Files
dash/backend/database/database.go
2022-11-08 09:22:14 +01:00

12 lines
219 B
Go

package database
import (
"time"
// "github.com/moustachioed/dash/backend/database/models"
)
type Database interface {
WriteJournalEntry(interface{}) error
GetJournalEntryForDate(time.Time) (interface{}, error)
}