mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
16 lines
371 B
Go
16 lines
371 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
base "github.com/caos/zitadel/internal/protoc/protoc-base"
|
||
|
"github.com/caos/zitadel/internal/protoc/protoc-gen-authoption/authoption"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
fileName = "%v.pb.authoptions.go"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
base.RegisterExtension(authoption.E_AuthOption)
|
||
|
base.RunWithBaseTemplate(fileName, base.LoadTemplate(templatesAuth_method_mappingGoTmplBytes()))
|
||
|
}
|