package model

// User model
type User struct {
	Username string `json:"username"`
	Password string `json:"password"`
}