1 package client 2 3 import ( 4 "github.com/ory/fosite/compose" 5 ) 6 7 func RolesFactory(_ *compose.Config, storage interface{}, _ interface{}) interface{} { 8 return &RolesHandler{ 9 ClientStorage: storage.(Storage), 10 } 11 } 12
View as plain text