2021-08-03 19:55:52 +03:00
|
|
|
//
|
|
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
|
|
//
|
|
|
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License. You may
|
|
|
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
//
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2022-02-23 19:10:11 +03:00
|
|
|
|
2022-09-21 11:08:25 +03:00
|
|
|
import { addStringsLoader } from '@hcengineering/platform'
|
2022-02-23 19:10:11 +03:00
|
|
|
import { coreId } from './component'
|
|
|
|
|
2021-08-03 19:55:52 +03:00
|
|
|
//
|
|
|
|
export * from './classes'
|
2022-02-23 19:10:11 +03:00
|
|
|
export * from './client'
|
2023-03-24 19:51:15 +03:00
|
|
|
export { coreId, systemAccountEmail, default } from './component'
|
2021-08-03 19:55:52 +03:00
|
|
|
export * from './hierarchy'
|
2022-02-23 19:10:11 +03:00
|
|
|
export * from './measurements'
|
2021-08-03 19:55:52 +03:00
|
|
|
export * from './memdb'
|
2022-01-31 12:06:30 +03:00
|
|
|
export * from './objvalue'
|
2022-02-23 19:10:11 +03:00
|
|
|
export * from './operations'
|
|
|
|
export * from './operator'
|
2021-08-03 19:55:52 +03:00
|
|
|
export * from './query'
|
2021-08-11 12:35:56 +03:00
|
|
|
export * from './server'
|
2022-02-23 19:10:11 +03:00
|
|
|
export * from './storage'
|
|
|
|
export * from './tx'
|
|
|
|
export * from './utils'
|
2022-05-23 18:53:33 +03:00
|
|
|
export * from './backup'
|
2023-04-04 09:11:49 +03:00
|
|
|
export * from './status'
|
2021-08-03 19:55:52 +03:00
|
|
|
|
2022-02-23 19:10:11 +03:00
|
|
|
addStringsLoader(coreId, async (lang: string) => {
|
2022-10-13 07:53:45 +03:00
|
|
|
return await import(`./lang/${lang}.json`)
|
2022-02-23 19:10:11 +03:00
|
|
|
})
|