wildebeest/frontend/src/utils/getCommitHash.ts

8 wiersze
115 B
TypeScript

declare const COMMIT_INFO: {
hash: string
}
export function getCommitHash(): string {
return COMMIT_INFO.hash
}