Merged in feature/baseTemplate (pull request #1)
feat!: base template * first bit of templating * codeowners * linuxbased * restart * baseline project * add grpc api and basic integration test * startqueue * queueMsg * splitscripts * migrations * queueintegrationtest * gateway
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
package auth
|
||||
|
||||
// Anonymous
|
||||
const (
|
||||
SchemeIDAnonymous = "smithy.api#noAuth"
|
||||
)
|
||||
|
||||
// HTTP auth schemes
|
||||
const (
|
||||
SchemeIDHTTPBasic = "smithy.api#httpBasicAuth"
|
||||
SchemeIDHTTPDigest = "smithy.api#httpDigestAuth"
|
||||
SchemeIDHTTPBearer = "smithy.api#httpBearerAuth"
|
||||
SchemeIDHTTPAPIKey = "smithy.api#httpApiKeyAuth"
|
||||
)
|
||||
|
||||
// AWS auth schemes
|
||||
const (
|
||||
SchemeIDSigV4 = "aws.auth#sigv4"
|
||||
SchemeIDSigV4A = "aws.auth#sigv4a"
|
||||
)
|
||||
Reference in New Issue
Block a user