Initial commit

This commit is contained in:
2024-07-25 17:23:46 +02:00
commit d5a015328d
28 changed files with 3870 additions and 0 deletions

7
api/context/context.go Normal file
View File

@@ -0,0 +1,7 @@
package context
import "database/sql"
type Context struct {
DB *sql.DB
}