WIP: Adding projects

Signed-off-by: Nikolai Rodionov <iam@allanger.xyz>
This commit is contained in:
2026-05-19 14:04:26 +02:00
parent 46b20ef356
commit 121e3f2664
2 changed files with 8 additions and 3 deletions

View File

@@ -21,6 +21,10 @@ type ProjectData struct {
// CreateProject adds a new projects to the database
func CreateProject(ctx context.Context, db *sql.DB, data *ProjectData) error {
query := `
INSERT INTO projects
(uuid, name, slug, )
`
return nil
}