- /* eslint no-undef: "off" */
- const ShowFactory = artifacts.require('ShowFactory')
- const ShowHelper = artifacts.require('ShowHelper')
- const ShowOwnership = artifacts.require('ShowOwnership')
- const ShowTrader = artifacts.require('ShowTrader')
- module.exports = (deployer) => {
- deployer.deploy(ShowFactory)
- deployer.deploy(ShowHelper)
- deployer.deploy(ShowOwnership)
- deployer.deploy(ShowTrader)
- }
|