pragma ever-solidity >= 0.68.0; import "../interfaces/IUpgradable.tsol"; import "./Version.tsol"; /// @title Upgradable /// @notice Implements base functions for upgradable contract /// @dev A contract is abstract - to be sure that it will be inherited by another contract abstract contract Upgradable is IUpgradable, Version {}