authService with

This commit is contained in:
rca 2024-07-17 08:21:30 +09:00
parent ca640953a8
commit f711fbc363

View File

@ -0,0 +1,9 @@
import api from '../api'
class AuthService {
async login(loginCode: string) {
return await api.post<any>('/parent/auth/login' , { code: loginCode });
}
}
export default new AuthService();