Sets up sqlc

This commit is contained in:
Dennis Schoepf 2024-04-26 22:46:14 +02:00
parent 08c7c1f9fa
commit bdaa5aa59b
6 changed files with 131 additions and 0 deletions

11
database/models.go Normal file
View file

@ -0,0 +1,11 @@
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.26.0
package database
type User struct {
ID int64
FirstName string
Email string
}