com.garmin.spring.annotation.EnableGarminConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of garmin-oauth Show documentation
Show all versions of garmin-oauth Show documentation
Package garmin license, new user license to app
The newest version!
package com.garmin.spring.annotation;
import com.garmin.configuration.AutoConfiguration;
import org.springframework.boot.autoconfigure.ImportAutoConfiguration;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@ImportAutoConfiguration(classes = AutoConfiguration.class)
public @interface EnableGarminConfig {
}