mirror of https://gitee.com/openkylin/genmai.git
将Sandbox融入到Explore*
This commit is contained in:
parent
3fe2fe0807
commit
02ad846e21
|
@ -30,6 +30,8 @@
|
|||
|
||||
package genmai
|
||||
|
||||
|
||||
|
||||
// Matchers 解析验证
|
||||
type Matchers struct{
|
||||
Type string
|
||||
|
@ -86,3 +88,6 @@ type ConfigCommon struct {
|
|||
/* */
|
||||
// other fields
|
||||
}
|
||||
|
||||
type ExplorerCommon struct {
|
||||
}
|
||||
|
|
|
@ -30,6 +30,15 @@
|
|||
|
||||
package genmai
|
||||
|
||||
import (
|
||||
// TODO:
|
||||
// 应该写成相对路径,因为genmai应该是编译成库,所以包路径不
|
||||
// 是以main开头。
|
||||
//
|
||||
// go 有点拉
|
||||
sandbox "main/src/genmai/Sandbox"
|
||||
)
|
||||
|
||||
type ConfigKernel struct {
|
||||
FormatVer int
|
||||
Id string
|
||||
|
@ -39,3 +48,9 @@ type ConfigKernel struct {
|
|||
SiteInfo SiteInfo
|
||||
SiteRequests SiteRequests
|
||||
}
|
||||
|
||||
type ExplorerKernel struct {
|
||||
ExplorerCommon
|
||||
/* */
|
||||
ekSandbox sandbox.SandboxBase
|
||||
}
|
||||
|
|
|
@ -28,7 +28,16 @@
|
|||
|
||||
package genmai
|
||||
|
||||
type ExplorerSystem struct {
|
||||
import (
|
||||
// TODO:
|
||||
// 应该写成相对路径,因为genmai应该是编译成库,所以包路径不
|
||||
// 是以main开头。
|
||||
//
|
||||
// go 有点拉
|
||||
sandbox "main/src/genmai/Sandbox"
|
||||
)
|
||||
|
||||
type ConfigSystem struct {
|
||||
FormatVer int
|
||||
Id string
|
||||
Belong string
|
||||
|
@ -37,3 +46,9 @@ type ExplorerSystem struct {
|
|||
SiteInfo SiteInfo
|
||||
SiteRequests SiteRequests
|
||||
}
|
||||
|
||||
type ExplorerSystem struct {
|
||||
ExplorerCommon
|
||||
/* */
|
||||
esSandbox sandbox.SandboxBase
|
||||
}
|
||||
|
|
|
@ -28,7 +28,16 @@
|
|||
|
||||
package genmai
|
||||
|
||||
type ExplorerWeb struct {
|
||||
import (
|
||||
// TODO:
|
||||
// 应该写成相对路径,因为genmai应该是编译成库,所以包路径不
|
||||
// 是以main开头。
|
||||
//
|
||||
// go 有点拉
|
||||
sandbox "main/src/genmai/Sandbox"
|
||||
)
|
||||
|
||||
type ConfigWeb struct {
|
||||
FormatVer int
|
||||
Id string
|
||||
Belong string
|
||||
|
@ -37,3 +46,10 @@ type ExplorerWeb struct {
|
|||
SiteInfo SiteInfo
|
||||
SiteRequests SiteRequests
|
||||
}
|
||||
|
||||
|
||||
type ExplorerWeb struct {
|
||||
ExplorerCommon
|
||||
/* */
|
||||
esSandbox sandbox.SandboxBase
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue