2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 04:22:33 +08:00
Files
panel/pkg/webserver/types.go
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"
)