models

package
v0.0.0-...-618557b Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 30, 2024 License: MIT Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrNoRecord           = errors.New("models: no matching record found")
	ErrInvalidCredentials = errors.New("models: invalid credentials")
	ErrDuplicateEmail     = errors.New("models: duplicate email")
)

Functions

This section is empty.

Types

type Snippet

type Snippet struct {
	Created time.Time
	Expires time.Time
	Title   string
	Content string
	ID      int
}

type SnippetModel

type SnippetModel struct {
	DB *sql.DB
}

func (*SnippetModel) Get

func (m *SnippetModel) Get(id int) (*Snippet, error)

func (*SnippetModel) Insert

func (m *SnippetModel) Insert(title, content string, expires int) (int, error)

func (*SnippetModel) Latest

func (m *SnippetModel) Latest() ([]*Snippet, error)

type User

type User struct {
	Created        time.Time
	Name           string
	Email          string
	HashedPassword []byte
	ID             int
}

type UserModel

type UserModel struct {
	DB *sql.DB
}

func (*UserModel) Authenticate

func (m *UserModel) Authenticate(email, password string) (int, error)

func (*UserModel) Exists

func (m *UserModel) Exists(id int) (bool, error)

func (*UserModel) Insert

func (m *UserModel) Insert(name, email, password string) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL