10 lines
140 B
Go
10 lines
140 B
Go
|
package response
|
||
|
|
||
|
import (
|
||
|
"miniapp/model/system/request"
|
||
|
)
|
||
|
|
||
|
type PolicyPathResponse struct {
|
||
|
Paths []request.CasbinInfo `json:"paths"`
|
||
|
}
|