1
0
Fork 0
mirror of synced 2024-07-14 10:45:51 +12:00

Fixing issue with pro import.

This commit is contained in:
mike12345567 2022-10-27 17:31:39 +01:00
parent 2d225e11b9
commit a9b406ea66
2 changed files with 3 additions and 1 deletions

View file

@ -18,7 +18,7 @@ import fileSystem from "./utilities/fileSystem"
import eventEmitter from "./events"
import * as migrations from "./migrations"
import bullboard from "./automations/bullboard"
import * as pro from "../../../../budibase-pro/packages/pro"
import * as pro from "@budibase/pro"
import api from "./api"
import sdk from "./sdk"
const pino = require("koa-pino-logger")

View file

@ -34,6 +34,8 @@ export interface AppBackupMetadata {
name?: string
createdBy?: string | User
timestamp: string
finishedAt?: string
startedAt?: string
contents?: AppBackupContents
}