12 lines
174 B
Go
12 lines
174 B
Go
|
package privilege_external
|
||
|
|
||
|
type Deps struct {
|
||
|
}
|
||
|
|
||
|
type PrivilegeExternal struct {
|
||
|
}
|
||
|
|
||
|
func NewPrivilegeExternal(deps Deps) *PrivilegeExternal {
|
||
|
return &PrivilegeExternal{}
|
||
|
}
|