13 lines
175 B
Java
13 lines
175 B
Java
package me.zacharias.chat.api;
|
|
|
|
public enum APIEndpoints {
|
|
// API request endpoints
|
|
ADD_TOOL,
|
|
QUERY,
|
|
|
|
// API response endpoints
|
|
RESPONSE,
|
|
USE_TOOL,
|
|
|
|
}
|