github.com/gophercloud/gophercloud@v1.11.0/openstack/compute/v2/extensions/lockunlock/results.go (about) 1 package lockunlock 2 3 import ( 4 "github.com/gophercloud/gophercloud" 5 ) 6 7 // LockResult and UnlockResult are the responses from a Lock and Unlock 8 // operations respectively. Call their ExtractErr methods to determine if the 9 // requests suceeded or failed. 10 type LockResult struct { 11 gophercloud.ErrResult 12 } 13 14 type UnlockResult struct { 15 gophercloud.ErrResult 16 }