mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 17:22:01 +08:00
9 lines
143 B
Go
9 lines
143 B
Go
// +build server
|
|
|
|
package runtime
|
|
|
|
// AppType returns the application type, EG: desktop
|
|
func (r *system) AppType() string {
|
|
return "server"
|
|
}
|