mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
* fix: small ui fixes * feat: #171 * fix: improvements to library scanning on admin UI * feat: v2 download API * fix: add download context cleanup * fix: lint
11 lines
286 B
TypeScript
11 lines
286 B
TypeScript
import { systemConfig } from "~/server/internal/config/sys-conf";
|
|
|
|
export default defineEventHandler((_h3) => {
|
|
return {
|
|
appName: "Drop",
|
|
version: systemConfig.getDropVersion(),
|
|
gitRef: `#${systemConfig.getGitRef()}`,
|
|
external: systemConfig.getExternalUrl(),
|
|
};
|
|
});
|