package digital.loom.rhizome.authentication;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
/**
* @author Matthew Tamayo-Rios <matthew@kryptnostic.com>
* Convenience class for automatically selecting the correct auth0 pod based on environment.
*/
@Configuration
@Import( { LocalAuth0Pod.class, AwsAuth0Pod.class } )
public class Auth0Pod {}