8 lines
155 B
Go
8 lines
155 B
Go
|
package appCtx
|
||
|
|
||
|
type AppContext struct {
|
||
|
IsMobile bool `json:"isMobile"`
|
||
|
BundlePath string `json:"bundlePath"`
|
||
|
RunPath string `json:"runPath"`
|
||
|
}
|