13 lines
328 B
JavaScript
13 lines
328 B
JavaScript
|
/* eslint-disable prefer-const */
|
||
|
/* global artifacts */
|
||
|
|
||
|
module.exports = async function (deployer, network, accounts) {
|
||
|
const LibControl = artifacts.require('LibControl');
|
||
|
|
||
|
const ControlFacet = artifacts.require('ControlFacet');
|
||
|
|
||
|
await deployer.link(LibControl, ControlFacet);
|
||
|
|
||
|
await deployer.deploy(ControlFacet)
|
||
|
}
|