11 lines
199 B
Dart
11 lines
199 B
Dart
enum AuthApi {
|
|
/// 获取 token
|
|
getToken('/api/events/device/token'),
|
|
|
|
/// 获取推流地址
|
|
getSteamKey('api/events/device/stream/key');
|
|
|
|
final String path;
|
|
const AuthApi(this.path);
|
|
}
|