Files
nfeeder/internal/db/models.go
T
jasonhilder a8862721cd Initial project structure commit.
Static directory for public folders and business logic for the app
within internal, split into domain specific folders to keep clear
seperation of concerns.
2026-04-23 08:09:09 +02:00

12 lines
183 B
Go

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.30.0
package db
type User struct {
ID int64 `json:"id"`
Name string `json:"name"`
Age int32 `json:"age"`
}