repository

package
v0.0.0-...-ddd56d1 Latest Latest
Warning

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

Go to latest
Published: Nov 28, 2023 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Todo

type Todo struct {
	ID     uuid.UUID `db:"id"`
	Type   string    `db:"type"`
	Name   string    `db:"name"`
	Status int       `db:"status"`
}

type TodoRepository

type TodoRepository interface {
	Create(Todo) (*Todo, error)
	GetAll(Todo) ([]Todo, error)
}

func NewTodoRepositoryPostgres

func NewTodoRepositoryPostgres(db *sqlx.DB) TodoRepository

Jump to

Keyboard shortcuts

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