import Axios from "@/config/axios"; export const fetchUser = async (): Promise => await Axios.get("/users", {}); export const fetchCreateUser = async (): Promise => await Axios.post("/createUser", {}); export const fetchSTStoken = async (): Promise => await Axios.post("/getSTStoken", {});