123456789101112 |
- import http from '../utils/http'
- const AuthApi = {
- async Authenticate(input: any) {
- return http.post('/api/OpenAuth/Authenticate', input) as Promise<IRestResult<any>>
- },
- async Entrance(input: any) {
- return http.post('/api/OpenAuth/Entrance', input) as Promise<IRestResult<any>>
- },
- }
- export default AuthApi
|