Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01NBHF4R9EAejDJUMdwr6C68
17 lines
428 B
Go
17 lines
428 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
func runCheck(args []string, stdout, stderr io.Writer) int {
|
|
fs, path := configFlags("check", stderr)
|
|
testAuth := fs.String("test-auth", "", "Suche und Gruppenprüfung für einen Benutzer durchspielen")
|
|
if err := fs.Parse(args); err != nil {
|
|
return 2
|
|
}
|
|
_ = testAuth
|
|
fmt.Fprintf(stderr, "Fehler: config %q kann noch nicht geladen werden (nicht implementiert)\n", *path)
|
|
return 1
|
|
}
|