mirror of https://github.com/k3s-io/k3s.git
13 lines
237 B
Go
13 lines
237 B
Go
|
package server
|
||
|
|
||
|
import (
|
||
|
"github.com/rancher/norman/pkg/dynamiclistener"
|
||
|
"github.com/rancher/rio/pkg/daemons/config"
|
||
|
)
|
||
|
|
||
|
type Config struct {
|
||
|
DisableAgent bool
|
||
|
TLSConfig dynamiclistener.UserConfig
|
||
|
ControlConfig config.Control
|
||
|
}
|