2021-12-09 14:18:38 +01:00
|
|
|
import api from './api';
|
2021-12-14 16:06:54 +01:00
|
|
|
import editor from './schemas/editor';
|
|
|
|
|
import list from './schemas/list';
|
2021-12-09 14:18:38 +01:00
|
|
|
import plugin from './plugin';
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
api as countryApi,
|
|
|
|
|
editor as countrySchema,
|
2021-12-10 14:23:14 +01:00
|
|
|
list as countryListSchema,
|
2021-12-09 14:18:38 +01:00
|
|
|
plugin as countryPlugin
|
|
|
|
|
};
|