UNPKG

hyperflow

Version:

A javascript state flow and mutation management toolkit & library for developing universal app.

44 lines (41 loc) 1.4 kB
/** * Copyright 2015-present Tuan Le. * * Licensed under the MIT License. * You may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://opensource.org/licenses/mit-license.html * * 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. * *------------------------------------------------------------------------ * * @description - Factory prefix Id code. * * @author Tuan Le (tuan.t.lei@gmail.com) * * @flow */ 'use strict'; // eslint-disable-line /* factory Ids */ const APP_FACTORY_CODE = `a-rDE8KtzgYxpmdvaauLUXdejw`; const AGENT_FACTORY_CODE = `a-xvnQscHyjmnDXknijYzNaK8d`; const DOMAIN_FACTORY_CODE = `d-MbzAUNsGCWVRN4cYnnKMXrhH`; const SERVICE_FACTORY_CODE = `s-VTnf9gRpwsoApZTNYnAiJKDh`; const STORE_FACTORY_CODE = `s-VxiQKJivmJBQetNCsF9sbwyn`; const INTERFACE_FACTORY_CODE = `i-oUdiaxwfDYzG3WGTwBHhWHmH`; const FIXTURE_FACTORY_CODE = `t-uThfPdhtQXJGvX8fbHPYLaNy`; export { APP_FACTORY_CODE, AGENT_FACTORY_CODE, DOMAIN_FACTORY_CODE, SERVICE_FACTORY_CODE, STORE_FACTORY_CODE, INTERFACE_FACTORY_CODE, FIXTURE_FACTORY_CODE };