pastebin/config.go

12 lines
108 B
Go
Raw Normal View History

2017-07-03 06:42:34 +00:00
package main
2017-07-03 06:57:32 +00:00
import (
"time"
)
2017-07-03 06:42:34 +00:00
// Config ...
type Config struct {
2017-07-03 06:57:32 +00:00
expiry time.Duration
2017-07-03 06:42:34 +00:00
fqdn string
}