mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-19 18:05:41 -05:00
chore(core): remove Introspected from StorageInterface
This commit is contained in:
committed by
Florian Hussonnois
parent
b381ee53fc
commit
ce11b937f5
@@ -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;
|
||||
}
|
||||
@@ -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 {
|
||||
}
|
||||
Reference in New Issue
Block a user