mirror of
https://github.com/CPunch/gopenfusion.git
synced 2026-02-03 01:50:03 +00:00
major refactoring; started DB
- DB work has started in db. this will be a direct port of the OpenFusion DB format. - LoginServer is now less of a dummy. You can create and login to accounts, and create a character to go through the tutorial with. - config.go will host some commonly changed variables. - protocol: fixed a bug relating to arrays being ignored while encoding packets
This commit is contained in:
18
go.mod
18
go.mod
@@ -1,3 +1,21 @@
|
||||
module github.com/CPunch/GopenFusion
|
||||
|
||||
go 1.19
|
||||
|
||||
require (
|
||||
github.com/blockloop/scan v1.3.0
|
||||
github.com/glebarez/go-sqlite v1.21.0
|
||||
golang.org/x/crypto v0.7.0
|
||||
)
|
||||
|
||||
require (
|
||||
github.com/dustin/go-humanize v1.0.1 // indirect
|
||||
github.com/google/uuid v1.3.0 // indirect
|
||||
github.com/mattn/go-isatty v0.0.17 // indirect
|
||||
github.com/remyoudompheng/bigfft v0.0.0-20230126093431-47fa9a501578 // indirect
|
||||
golang.org/x/sys v0.6.0 // indirect
|
||||
modernc.org/libc v1.22.2 // indirect
|
||||
modernc.org/mathutil v1.5.0 // indirect
|
||||
modernc.org/memory v1.5.0 // indirect
|
||||
modernc.org/sqlite v1.20.4 // indirect
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user