All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dromara.solon.XPlugin Maven / Gradle / Ivy

There is a newer version: 2.1.4
Show newest version
package org.dromara.solon;

import org.dromara.solon.entity.MilvusPropertiesConfiguration;
import org.dromara.solon.service.MilvusInit;
import org.noear.solon.core.AppContext;
import org.noear.solon.core.Plugin;

public class XPlugin implements Plugin {

    public void start(AppContext context) throws Throwable {
        context.beanMake(MilvusPropertiesConfiguration.class);
        context.beanMake(MilvusInit.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy