12 lines
132 B
Go

package models
import (
"github.com/google/uuid"
)
type User struct {
ID uuid.UUID
Username string
HashedPass string
}