mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-19 16:01:16 +00:00
16 lines
448 B
Go
16 lines
448 B
Go
package middleware
|
|
|
|
import (
|
|
"github.com/warmbly/warmbly/internal/app/apikey"
|
|
"github.com/warmbly/warmbly/internal/app/organization"
|
|
"github.com/warmbly/warmbly/internal/app/ratelimit"
|
|
"github.com/warmbly/warmbly/internal/app/token"
|
|
)
|
|
|
|
type Handler struct {
|
|
TokenService token.TokenService
|
|
APIKeyService apikey.APIKeyService
|
|
RateLimitService ratelimit.RateLimitService
|
|
OrganizationService organization.OrganizationService
|
|
}
|