getAvailableGuards method
Gets a list of available guards
Returns a list of guard names
Implementation
List<String> getAvailableGuards() {
// This would require additional method in AuthConfig
// For now, return the current guard
return [_guard];
}