mirror of
https://gitee.com/czh-dev/upload-hub
synced 2026-07-14 01:11:23 +08:00
11 lines
189 B
Java
11 lines
189 B
Java
package cn.czh.service;
|
|
|
|
public interface IAuthService {
|
|
|
|
String getMainUserPassword();
|
|
|
|
void setMainUserPassword(String password);
|
|
|
|
boolean isMainUser(String remoteAddress);
|
|
}
|