Files
panel/pkg/webserver/types.go
T
2025-12-01 14:19:15 +08:00

10 lines
130 B
Go

package webserver
// Type Web 服务器类型
type Type string
const (
TypeNginx Type = "nginx"
TypeApache Type = "apache"
)