mirror of
https://github.com/duanhf2012/origin.git
synced 2026-02-03 22:45:13 +08:00
12 lines
232 B
Go
12 lines
232 B
Go
package blueprint
|
|
|
|
type Blueprint struct {
|
|
execPool ExecPool
|
|
graphPool GraphPool
|
|
}
|
|
|
|
func (bm *Blueprint) Init(execDefFilePath string, graphFilePath string) {
|
|
bm.execPool.Load(execDefFilePath)
|
|
bm.graphPool.Load(graphFilePath)
|
|
}
|