blob: e8e5387f8dc68b588a2d4414543a57ebdf95a6d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package config
import "time"
type Config struct {
Domain string
Handlers []Handler
DbPath string
}
type Handler struct {
Name string
Exec string
Rpc string
Interval time.Duration
}
|