removed unused imports, cleaned up

main
AdamSBlack 2022-01-06 00:53:37 +00:00
parent 25875c480c
commit 715569ee97
2 changed files with 9 additions and 0 deletions

BIN
public/retro-hi.png 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 KiB

View File

@ -0,0 +1,9 @@
import axios from "axios";
export async function getSession() {
const req = await axios.get(`http://localhost/retropilot/0/useradmin/session`, {withCredentials: true});
return req.data
}