Reorganized package tree and added doc comments

This commit is contained in:
Sasha Koshka 2023-05-26 01:18:16 -04:00
parent c300567c0c
commit 60e5a1c729
11 changed files with 48 additions and 44 deletions

View File

@ -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)