1
0
forked from mico/idle_moloch
idle_moloch/test/Geld.t.sol

17 lines
257 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import { Test, console } from "forge-std/Test.sol";
import { Geld } from "../src/Geld.sol";
contract Gels is Test {
Geld public geld;
function setUp() public {
geld = new Geld();
}
}