mirror of
https://github.com/taigrr/pastebin
synced 2026-04-13 18:18:04 -07:00
12 lines
108 B
Go
12 lines
108 B
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// Config ...
|
|
type Config struct {
|
|
expiry time.Duration
|
|
fqdn string
|
|
}
|