add client

This commit is contained in:
wzdwc
2020-04-14 22:20:02 +08:00
parent 32dd3302f8
commit d98223a6c6
80 changed files with 8461 additions and 20 deletions
+8
View File
@@ -0,0 +1,8 @@
import { IAccountInfo } from './IAccountInfo';
import { ILoginResult } from './ILoginResult';
export interface IAccountService {
login(accountInfo: IAccountInfo): Promise<ILoginResult>;
authUser(userInfo: IAccountInfo): Promise<boolean>;
register(accountInfo: IAccountInfo): Promise<string>;
}