UNPKG

geteventstore-promise2

Version:
10 lines (8 loc) 307 B
import debugModule from 'debug'; import axios from 'axios'; const debug = debugModule('geteventstore:sendShutdownCommand'); export default (config) => async () => { const response = await axios.post(`${config.baseUrl}/admin/shutdown`); debug('', 'Response: %j', response.data); return response.data; };