forked from VinokurovVE/tests
7 lines
174 B
TypeScript
7 lines
174 B
TypeScript
import axios from "axios";
|
|
|
|
export default class AuthService {
|
|
static async hello() {
|
|
return await axios.get(`${import.meta.env.VITE_API_AUTH_URL}/hello`)
|
|
}
|
|
} |