Skip to content

Commit

Permalink
3.10 Move library to directory (#55)
Browse files Browse the repository at this point in the history
* Use relative imports for libraries

* Move lib to directory

---------

Co-authored-by: cairo <[email protected]>
  • Loading branch information
corydickson and cairoeth authored Nov 25, 2024
1 parent fc30d0d commit 838b4df
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ProposalTypesConfigurator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pragma solidity ^0.8.19;

import {IProposalTypesConfigurator} from "src/interfaces/IProposalTypesConfigurator.sol";
import {IAgoraGovernor} from "src/interfaces/IAgoraGovernor.sol";
import {Validator} from "src/Validator.sol";
import {Validator} from "src/lib/Validator.sol";

/**
* Contract that stores proposalTypes for the Agora Governor.
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion test/Validator.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pragma solidity ^0.8.19;

import "forge-std/Test.sol";
import {IProposalTypesConfigurator} from "src/interfaces/IProposalTypesConfigurator.sol";
import {Validator} from "src/Validator.sol";
import {Validator} from "src/lib/Validator.sol";

contract ValidatorTest is Test {
function setUp() public {}
Expand Down

0 comments on commit 838b4df

Please sign in to comment.