Files
qinglong_app/lib/base/http/url.dart
jyuesong d29c9e73f7 add task
2022-01-13 14:52:44 +08:00

13 lines
348 B
Dart

class Url {
static const LOGIN = "/api/user/login";
static const TASKS = "/api/crons";
static const RUN_TASKS = "/api/crons/run";
static const STOP_TASKS = "/api/crons/stop";
static const TASK_DETAIL = "/api/crons/";
static const ADD_TASK = "/api/crons";
static INTIME_LOG(String cronId) {
return "/api/crons/$cronId/log";
}
}