Basic client and server apps. #41

Open
pztrn wants to merge 32 commits from 2-client-basics into feature/1-basics
3 changed files with 5 additions and 1 deletions
Showing only changes of commit b787a2b22a - Show all commits

2
go.mod
View File

@ -4,6 +4,7 @@ go 1.24.0
require (
fyne.io/fyne/v2 v2.6.3
github.com/coder/websocket v1.8.14
github.com/jackc/pgx/v5 v5.7.6
github.com/jmoiron/sqlx v1.4.0
github.com/pressly/goose/v3 v3.25.0
@ -14,7 +15,6 @@ require (
require (
fyne.io/systray v1.11.0 // indirect
github.com/BurntSushi/toml v1.4.0 // indirect
github.com/coder/websocket v1.8.14 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/fredbi/uri v1.1.0 // indirect

View File

@ -11,4 +11,6 @@ const ServiceNameHTTPServer = "core/http_server"
var ErrHTTPServerIsInvalid = errors.New("HTTP server service implementation is invalid")
// HTTPServer is an interface for HTTP server service.
//
//nolint:iface
type HTTPServer interface{}

View File

@ -11,4 +11,6 @@ const ServiceNameOptions = "core/options"
var ErrOptionsIsInvalid = errors.New("options service implementation is invalid")
// Options is an interface for options service.
//
//nolint:iface
type Options interface{}