pomme/internal/types.go
2022-12-11 10:54:32 -05:00

14 lines
176 B
Go

package internal
import "gorm.io/gorm"
type IncomingRequest struct {
}
type User struct {
gorm.Model
Username string
Password string
HashedPassword string
}