9 lines
184 B
Go
9 lines
184 B
Go
package appCtx
|
|
|
|
//TODO to websiteapp package
|
|
type AppContext struct {
|
|
IsMobile bool `json:"isMobile"`
|
|
BundlePath string `json:"bundlePath"`
|
|
RunPath string `json:"runPath"`
|
|
}
|