16 lines
226 B
Go
16 lines
226 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"git.sr.ht/~michalr/go-satel"
|
||
|
)
|
||
|
|
||
|
type AppConfig struct {
|
||
|
satelAddr string
|
||
|
chatIds []int64
|
||
|
allowedTypes []satel.ChangeType
|
||
|
allowedIndexes []int
|
||
|
poolInterval time.Duration
|
||
|
}
|