(ctx context.Context, uuids ...string)
| 18 | type IServiceGet[T any] interface { |
| 19 | Get(ctx context.Context, uuid string) (*T, error) |
| 20 | List(ctx context.Context, uuids ...string) ([]*T, error) |
| 21 | |
| 22 | Search(ctx context.Context, keyword string, condition map[string]interface{}, sortRule ...string) ([]*T, error) |
| 23 | Count(ctx context.Context, keyword string, condition map[string]interface{}) (int64, error) |
no outgoing calls
no test coverage detected