mirror of
https://github.com/motajs/template.git
synced 2026-07-17 09:21:09 +08:00
9 lines
214 B
TypeScript
9 lines
214 B
TypeScript
import { ICoreState } from '@user/data-state';
|
|
import { patchFlags } from './flag';
|
|
import { patchHero } from './hero';
|
|
|
|
export function patchAll(state: ICoreState) {
|
|
patchFlags(state);
|
|
patchHero(state);
|
|
}
|