Skip to content

Commit

Permalink
Fake server
Browse files Browse the repository at this point in the history
  • Loading branch information
warrenrhodes committed Oct 12, 2024
1 parent 21cb2f9 commit ba96fc9
Show file tree
Hide file tree
Showing 5 changed files with 665 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
.fvm/
migrate_working_dir/
.history

*.db

# IntelliJ related
*.iml
Expand Down
1 change: 0 additions & 1 deletion scripts/run_static_analysis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
# Run static analysis on the specified directory.
cd "$1" || exit
flutter pub get
flutter pub get
flutter analyze --dartdocs

# Run dart_code_linter additional analysis.
Expand Down
27 changes: 27 additions & 0 deletions server/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
module server

go 1.23.2

replace sabitou-go => ../protos/gen/go

require (
connectrpc.com/connect v1.17.0
github.com/google/uuid v1.6.0
github.com/mattn/go-sqlite3 v1.14.24
golang.org/x/net v0.30.0
sabitou-go v0.0.0-00010101000000-000000000000
)

require (
github.com/cenkalti/backoff/v4 v4.1.1 // indirect
github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect
github.com/improbable-eng/grpc-web v0.15.0 // indirect
github.com/klauspost/compress v1.11.7 // indirect
github.com/rs/cors v1.7.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/text v0.19.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 // indirect
google.golang.org/grpc v1.67.1 // indirect
google.golang.org/protobuf v1.35.1 // indirect
nhooyr.io/websocket v1.8.6 // indirect
)
Loading

0 comments on commit ba96fc9

Please sign in to comment.