1
0
forked from PGL/Clyde
Clyde/frontend/src/rest/apps.js

10 lines
181 B
JavaScript
Raw Normal View History

2024-03-09 18:41:20 +01:00
import { restGet } from './restConsumer.js'
export async function appList(){
return restGet("/apps")
}
export async function checkPage(page){
return restGet("/apps/" + page)
}