mirror of
https://github.com/simon-ding/polaris.git
synced 2026-03-01 23:20:47 +08:00
11 lines
360 B
Dart
11 lines
360 B
Dart
class APIs {
|
|
static const _baseUrl = "http://127.0.0.1:8080";
|
|
static const searchUrl = "$_baseUrl/api/v1/tv/search";
|
|
static const settingsUrl = "$_baseUrl/api/v1/setting/do";
|
|
static const watchlistUrl = "$_baseUrl/api/v1/tv/watchlist";
|
|
|
|
static const tmdbImgBaseUrl = "https://image.tmdb.org/t/p/w500/";
|
|
|
|
static const tmdbApiKey = "tmdb_api_key";
|
|
}
|