mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
16 lines
204 B
Go
16 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
|
||
|
}
|