Finish testing and assembling a basic server and client structure

This commit is contained in:
zontreck 2024-05-22 20:10:41 -07:00
parent 5c4a8c6a58
commit 3be0a9ab5f
5 changed files with 192 additions and 38 deletions

7
compile.sh Executable file
View file

@ -0,0 +1,7 @@
#!/bin/bash
mkdir out
rm -rf out/*
flutter pub publish -f --skip-validation
dart compile exe -o out/server_test bin/server_test.dart
dart compile exe -o out/client_test bin/client_test.dart