mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 06:47:20 +08:00
10 lines
130 B
Go
10 lines
130 B
Go
package webserver
|
|
|
|
// Type Web 服务器类型
|
|
type Type string
|
|
|
|
const (
|
|
TypeNginx Type = "nginx"
|
|
TypeApache Type = "apache"
|
|
)
|