mirror of
https://github.com/taigrr/wails.git
synced 2026-04-02 05:08:54 -07: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"
|
|
}
|