众筹配方所需的 ModuleId 不存在

ModuleId required for crowdfunding recipe is not present

crowdfunding app 有一个导入的 ModuleId

use sp_runtime::{
    traits::{AccountIdConversion, Saturating, Zero},
    ModuleId,
};

const PALLET_ID: ModuleId = ModuleId(*b"ex/cfund");

我现在使用的是 FRAME 2.0,sp_runtime 不再包含 ModuleId,有什么替代方案?

unresolved import `sp_runtime::ModuleId`

ModuleId -> PalletId 发生在这里:https://github.com/paritytech/substrate/pull/8477