UNPKG

strapi-plugin-marking-pin-point-image

Version:
28 lines (23 loc) 454 B
"use strict"; module.exports = { async locales(ctx) { try { return await strapi .plugin("marking-point-image") .service("myService") .getLocales() } catch (err) { ctx.throw(500, err) } }, async config(ctx) { try { return await strapi .plugin("marking-point-image") .service("myService") .getConfig() } catch (err) { ctx.throw(500, err) } }, };