This repository has been archived on 2026-01-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cover-letter-templater/backend/models/users.go
2025-07-05 21:11:09 +03:00

14 lines
217 B
Go

package models
type User struct {
ID int
email string
name string
password string
createdAt string
}
func Create(email string, name string, hash string) {
// TODO: Insert user into database
}