feat: admin routes + better auth routing

This commit is contained in:
2025-05-30 18:17:12 +02:00
parent db2cb36f54
commit 51b7e6b3f9
10 changed files with 133 additions and 59 deletions

View File

@ -0,0 +1,8 @@
import { axios } from ".."
export interface FetchApiServicesRequest {}
export const fetchApiServices = async (req: FetchApiServicesRequest) => {
const response = await axios.get()
}