mirror-nourybot/pkg/models/models.go
2022-03-10 23:41:13 +01:00

15 lines
204 B
Go

package models
import (
"errors"
"time"
)
var ErrNoRecord = errors.New("models: no matching record found")
type Channel struct {
ID int
Username string
TwitchID string
Added time.Time
}