12 lines
182 B
Go
12 lines
182 B
Go
package repositories
|
|
|
|
import "database/sql"
|
|
|
|
type NoteRepository interface {
|
|
CreateNote(title string, path string, slug string) error
|
|
}
|
|
|
|
type noteRepository struct {
|
|
db *sql.DB
|
|
}
|
|
|