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