mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
96cdf77995
This reverts commit 326ea86a57
.
11 lines
156 B
Go
11 lines
156 B
Go
package quota
|
|
|
|
import "errors"
|
|
|
|
var ErrInvalidQuotaTarget = errors.New("invalid quota target")
|
|
|
|
type ScopeParameters struct {
|
|
OrgID int64
|
|
UserID int64
|
|
}
|