UNPKG

cosmic-interchain-cli

Version:

A command-line utility for Cosmic Wire's interchain messaging protocol

14 lines 375 B
import { logGray } from '../logger.js'; export function callWithConfigCreationLogs(fn, type) { return async (...args) => { logGray(`Creating ${type}...`); try { const result = await fn(...args); return result; } finally { logGray(`Created ${type}!`); } }; } //# sourceMappingURL=utils.js.map