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