mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-24 01:24:26 +01:00
api: add sandbox pause and resume API
By exporting the existing sandbox operations. Signed-off-by: Peng Tao <bergwolf@gmail.com>
This commit is contained in:
@@ -54,3 +54,13 @@ func (p *Sandbox) GetContainer(containerID string) vc.VCContainer {
|
||||
func (p *Sandbox) Release() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// Pause implements the VCSandbox function of the same name.
|
||||
func (p *Sandbox) Pause() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// Resume implements the VCSandbox function of the same name.
|
||||
func (p *Sandbox) Resume() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user