Create a entry point for server

This commit is contained in:
zontreck 2024-05-22 16:13:19 -07:00
parent 52c6fff445
commit 2b6a265b74
5 changed files with 9 additions and 13 deletions

7
bin/server.dart Normal file
View file

@ -0,0 +1,7 @@
import 'package:libac_flutter/packets/packets.dart';
void main() async {
await PacketServer.start();
print("Server stopping");
}