William Petit fe2ee907f9
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good
feat: initial commit
2023-05-18 14:03:09 +02:00

24 lines
257 B
Go

package store
import (
"net/url"
"time"
)
type ProxyName Name
type ProxyHeader struct {
Name ProxyName
Weight int
Enabled bool
}
type Proxy struct {
ProxyHeader
To *url.URL
From []string
CreatedAt time.Time
UpdatedAt time.Time
}