初始化

This commit is contained in:
wyf
2026-01-20 21:30:10 +08:00
commit c54f76cd0c
34 changed files with 5262 additions and 0 deletions

9
bin/const/Constants.dart Normal file
View File

@@ -0,0 +1,9 @@
class Constants {
static const int port = 9200;
static const String serviceName = "vsbs_room";
static int default_page = 1;
static int default_limit_max = 999999;
static int default_limit = 10;
}