mirror of
https://github.com/zfile-dev/zfile.git
synced 2025-04-19 05:34:52 +00:00
16 lines
306 B
Java
16 lines
306 B
Java
package im.zhaojun.common.service;
|
|
|
|
import im.zhaojun.common.model.SystemMonitorInfo;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
/**
|
|
* @author zhaojun
|
|
*/
|
|
@Service
|
|
public class SystemMonitorService {
|
|
|
|
public SystemMonitorInfo systemMonitorInfo() {
|
|
return new SystemMonitorInfo();
|
|
}
|
|
}
|