init: first steps

This commit is contained in:
2025-07-20 23:50:47 +03:00
commit 5f26ad6941
25 changed files with 1134 additions and 0 deletions

7
repository/repository.go Normal file
View File

@@ -0,0 +1,7 @@
package repository
import "gorm.io/gorm"
type repository struct {
db *gorm.DB
}