2023-05-17 22:45:39 +00:00
|
|
|
package appCtx
|
|
|
|
|
2023-07-22 15:55:23 +00:00
|
|
|
//TODO to websiteapp package
|
2023-05-17 22:45:39 +00:00
|
|
|
type AppContext struct {
|
|
|
|
IsMobile bool `json:"isMobile"`
|
|
|
|
BundlePath string `json:"bundlePath"`
|
|
|
|
RunPath string `json:"runPath"`
|
|
|
|
}
|