mirror of
https://github.com/yusing/godoxy.git
synced 2026-03-19 15:54:14 +01:00
10 lines
169 B
Go
10 lines
169 B
Go
package model
|
|
|
|
type (
|
|
ProxyProvider struct {
|
|
Kind string `json:"kind"` // docker, file
|
|
Value string `json:"value"`
|
|
}
|
|
ProxyProviders = map[string]ProxyProvider
|
|
)
|