First commit, basic SQLite store, worker, and server

This commit is contained in:
Miloš Jovanović 2026-09-08 09:45:23 +02:00
commit baacf30c6d
7 changed files with 319 additions and 0 deletions

17
go.mod Normal file
View file

@ -0,0 +1,17 @@
module ucfa/st-agent-worker
go 1.27.0
require (
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/mattn/go-isatty v0.0.24 // indirect
github.com/ncruces/go-strftime v1.0.0 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
golang.org/x/sys v0.47.0 // indirect
golang.org/x/time v0.15.0 // indirect
modernc.org/libc v1.75.6 // indirect
modernc.org/mathutil v1.7.1 // indirect
modernc.org/memory v1.12.1 // indirect
modernc.org/sqlite v1.58.0 // indirect
)