Add persistent session storage with SQLite

This commit is contained in:
bronku 2025-03-28 14:44:46 +01:00
parent 747d9fe3c7
commit b7072a5865
10 changed files with 135 additions and 43 deletions

13
main.go
View file

@ -2,19 +2,6 @@ package main
import "github.com/Bronku/iroon/cmd/iroon"
type test struct {
data []int
}
func (t *test) xd() []int {
return t.data
}
func (t *test) setData(input []int) {
t.data = make([]int, len(input))
copy(t.data, input)
}
func main() {
iroon.Run()
}