mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 18:44:40 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
16 lines
377 B
Go
16 lines
377 B
Go
package main
|
|
|
|
import (
|
|
base "github.com/zitadel/zitadel/internal/protoc/protoc-base"
|
|
"github.com/zitadel/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()))
|
|
}
|