1
0
forked from PGL/Clyde

Page api stub

This commit is contained in:
Debucquoy Anthony 2024-03-09 18:41:20 +01:00
parent 5bda05925c
commit 160cfb0bbf

View File

@ -0,0 +1,9 @@
import { restGet } from './restConsumer.js'
export async function appList(){
return restGet("/apps")
}
export async function checkPage(page){
return restGet("/apps/" + page)
}