mirror of
https://github.com/certd/certd.git
synced 2026-05-19 07:37:36 +08:00
15 lines
280 B
TypeScript
15 lines
280 B
TypeScript
|
|
import certd from './certd';
|
||
|
|
import authentication from './authentication';
|
||
|
|
import vip from './vip';
|
||
|
|
import tutorial from './tutorial';
|
||
|
|
import preferences from './preferences';
|
||
|
|
import ui from './ui';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
certd,
|
||
|
|
authentication,
|
||
|
|
vip,
|
||
|
|
ui,
|
||
|
|
tutorial,
|
||
|
|
preferences
|
||
|
|
};
|