Reorganized package tree and added doc comments
This commit is contained in:
parent
c300567c0c
commit
60e5a1c729
@ -1,7 +1,9 @@
|
|||||||
|
// Config provides a configuration system for routers.
|
||||||
package config
|
package config
|
||||||
|
|
||||||
import "crypto/tls"
|
import "crypto/tls"
|
||||||
|
|
||||||
|
// Config is an interface that configuration objects must fulfill.
|
||||||
type Config interface {
|
type Config interface {
|
||||||
User (name string) User
|
User (name string) User
|
||||||
OverUsers (func (name string, user User) bool)
|
OverUsers (func (name string, user User) bool)
|
||||||