// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts/access/AccessControl.sol"; /** * @title TokenFactory138 * @notice Stub for build; full implementation when emoney module is restored */ contract TokenFactory138 is AccessControl { constructor(address admin) { _grantRole(DEFAULT_ADMIN_ROLE, admin); } }