File size: 129 Bytes
2196bfe
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
package models

import "gorm.io/gorm"

type User struct {
	gorm.Model
	Username string `gorm:"unique"`
	Password string
}