19 lines
308 B
Java
19 lines
308 B
Java
package com.imyeyu.api.bean;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.stereotype.Component;
|
|
import org.yaml.snakeyaml.Yaml;
|
|
|
|
/**
|
|
* @author 夜雨
|
|
* @since 2025-01-13 11:42
|
|
*/
|
|
@Component
|
|
public class IOCBeans {
|
|
|
|
@Bean
|
|
public Yaml yaml() {
|
|
return new Yaml();
|
|
}
|
|
}
|