Update runtime.System to make all methods

This commit is contained in:
Lea Anthony
2020-10-23 11:19:38 +11:00
parent 145656bc43
commit 0113fbff4f
7 changed files with 29 additions and 6 deletions

View File

@@ -0,0 +1,8 @@
// +build server
package runtime
// AppType returns the application type, EG: desktop
func (r *system) AppType() string {
return "server"
}