Pass playground struct to session provisioner

This commit is contained in:
Jonathan Leibiusky @xetorthio
2017-11-16 12:00:59 -03:00
parent adb64091c4
commit dcb2bc7500
3 changed files with 3 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ type InstanceProvisionerApi interface {
}
type SessionProvisionerApi interface {
SessionNew(session *types.Session) error
SessionNew(playground *types.Playground, session *types.Session) error
SessionClose(session *types.Session) error
}