7 lines
165 B
TypeScript
7 lines
165 B
TypeScript
import {Artifacts} from '../util/artifacts';
|
|
const {Migrations} = new Artifacts(artifacts);
|
|
|
|
module.exports = (deployer: any) => {
|
|
deployer.deploy(Migrations);
|
|
};
|