1
0
Fork 0
mirror of synced 2024-09-28 15:21:28 +12:00

Formatting.

This commit is contained in:
mike12345567 2021-05-11 17:50:26 +01:00
parent c9d903a92f
commit d7d29cf0f3
2 changed files with 2 additions and 5 deletions

View file

@ -1,7 +1,4 @@
const {
deployToObjectStore,
performReplication,
} = require("./utils")
const { deployToObjectStore, performReplication } = require("./utils")
exports.deploy = async function (deployment) {
const appId = deployment.getAppId()

View file

@ -19,6 +19,6 @@ exports.execute = async function (ctx) {
ctx.body = executor.execute()
}
exports.save = async function(ctx) {
exports.save = async function (ctx) {
ctx.throw(501, "Not currently implemented")
}