This commit is contained in:
crusader 2018-04-23 18:06:10 +09:00
parent 1865c8f17a
commit 4abb98f38b

View File

@ -0,0 +1,11 @@
package com.loafle.overflow.module.core.interfaces;
/**
* Service
*/
public interface Service {
void initService() throws Exception;
void startService() throws Exception;
void stopService();
void destroyService();
}