package exec // Hooks 钩子实例 type Hooks interface { Before(dataset interface{}) error After(dataset interface{}, result interface{}) error }