1
0
Fork 0
mirror of synced 2024-07-04 22:11:23 +12:00

Add structures for Installation type

This commit is contained in:
Rory Powell 2023-07-14 09:21:23 +01:00
parent 1371a009a8
commit 41dc86436c
2 changed files with 11 additions and 0 deletions

View file

@ -2,6 +2,7 @@ export * from "./common"
export * as accounts from "./accounts"
export * as apps from "./apps"
export * as db from "./db"
export * as installation from "./installation"
export * as koa from "./koa"
export * as licenses from "./licenses"
export * as plugins from "./plugins"

View file

@ -0,0 +1,10 @@
import { generator } from "@budibase/backend-core/tests"
import { Installation } from "@budibase/types"
export function install(): Installation {
return {
_id: "install",
installId: generator.guid(),
version: generator.string()
}
}