chore(core): remove Introspected from StorageInterface

This commit is contained in:
Florian Hussonnois
2024-04-29 16:30:27 +02:00
committed by Florian Hussonnois
parent b381ee53fc
commit ce11b937f5
3 changed files with 0 additions and 28 deletions

View File

@@ -1,14 +0,0 @@
package io.kestra.storage.local;
import io.micronaut.context.annotation.ConfigurationProperties;
import lombok.Getter;
import jakarta.inject.Singleton;
import java.nio.file.Path;
@Singleton
@Getter
@ConfigurationProperties("kestra.storage.local")
public class LocalConfig {
Path basePath;
}

View File

@@ -1,12 +0,0 @@
package io.kestra.storage.local;
import io.micronaut.context.annotation.Requires;
import java.lang.annotation.*;
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PACKAGE, ElementType.TYPE})
@Requires(property = "kestra.storage.type", value = "local")
public @interface LocalStorageEnabled {
}