chore: adds versions and copyright

This commit is contained in:
vakabunga
2026-03-17 06:43:26 +03:00
parent 495c1e89bb
commit 6dd8c01f5e
8 changed files with 74 additions and 7 deletions

View File

@@ -0,0 +1,5 @@
import { api } from './client';
export async function getBackendVersion(): Promise<{ version: string }> {
return api.get<{ version: string }>('/api/version');
}