15 lines
344 B
Go
15 lines
344 B
Go
|
|
// keycape is the main server binary for the KeyCape IAM profile service.
|
||
|
|
// It orchestrates Authelia, LLDAP, and privacyIDEA to implement the
|
||
|
|
// NetKingdom IAM Profile (OIDC/PKCE Authorization Code Flow).
|
||
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
"os"
|
||
|
|
)
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
fmt.Fprintln(os.Stderr, "keycape server: not yet implemented (T05+)")
|
||
|
|
os.Exit(1)
|
||
|
|
}
|