aboutsummaryrefslogtreecommitdiff
path: root/config/config.go
blob: 3c6cddec1fad28d7cb5e38f8c168ccf53f947caa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package config

import "time"

type Config struct {
	Domain   string
	Handlers []Handler
	DbPath   string
}

type Handler struct {
	Name        string
	Exec        string
	Rpc         string
	DedupWindow time.Duration
	Interval    time.Duration
}