# README
interfaces
import "github.com/veeainc/utils.go/interfaces"
Example
func takePointer(obj interface{}) {
interfaces.EnsurePointer(obj)
}
# Functions
Take an object and enforce a pointer.
Ensure that an interface{} is passed as a pointer.
Return obj type.