14 lines
289 B
Go
14 lines
289 B
Go
|
|
// keycape-to-keycloak migrates a KeyCape canonical snapshot to a Keycloak
|
||
|
|
// realm export format. Part of the NetKingdom IAM migration contract.
|
||
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
"os"
|
||
|
|
)
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
fmt.Fprintln(os.Stderr, "keycape-to-keycloak: not yet implemented (T06+)")
|
||
|
|
os.Exit(1)
|
||
|
|
}
|