embed version in binary

This commit is contained in:
Hayden 2022-09-13 20:06:07 -08:00
parent ca36e3b080
commit 0b92d57b85
10 changed files with 87 additions and 9 deletions

View file

@ -22,12 +22,19 @@ export interface ServerResults {
}
export interface ApiSummary {
build: Build;
health: boolean;
message: string;
title: string;
versions: string[];
}
export interface Build {
build_time: string;
commit: string;
version: string;
}
export interface DocumentOut {
id: string;
path: string;