mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 09:13:49 +08:00
9 lines
192 B
Go
9 lines
192 B
Go
package types
|
|
|
|
type PHPExtension struct {
|
|
Name string `json:"name"`
|
|
Slug string `json:"slug"`
|
|
Description string `json:"description"`
|
|
Installed bool `json:"installed"`
|
|
}
|