12 lines
224 B
TypeScript
12 lines
224 B
TypeScript
import axios from "axios"
|
|
|
|
const BASE_URL = "http://localhost:3000/api"
|
|
|
|
export function getServerState() {
|
|
return axios.get(BASE_URL)
|
|
|
|
}
|
|
|
|
export function resetDatabase() {
|
|
return axios.get(BASE_URL + "/resetdatabase")
|
|
} |