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 { const { deployToObjectStore, performReplication } = require("./utils")
deployToObjectStore,
performReplication,
} = require("./utils")
exports.deploy = async function (deployment) { exports.deploy = async function (deployment) {
const appId = deployment.getAppId() const appId = deployment.getAppId()

View File

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