mirror of
https://github.com/placeholder-soft/storytime.git
synced 2026-04-30 21:41:46 +08:00
11 lines
185 B
Solidity
11 lines
185 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.17;
|
|
|
|
import "forge-std/Test.sol";
|
|
|
|
contract VaultTest is Test {
|
|
receive() external payable {}
|
|
|
|
function setUp() public {}
|
|
}
|