mirror of
https://github.com/valitydev/fe-core.git
synced 2024-11-06 02:25:18 +00:00
FRONTEND-540. Module for id generator (#18)
* fix: add module for id-generator.service.ts * fix: add module for id-generator.service.ts * Publish - @rbkmoney/id-generator@0.1.1-pr18.0 Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
ed2314aa1a
commit
fc17dcaf07
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@rbkmoney/id-generator",
|
"name": "@rbkmoney/id-generator",
|
||||||
"version": "0.1.0",
|
"version": "0.1.1-pr18.0",
|
||||||
"description": "ID Generator",
|
"description": "ID Generator",
|
||||||
"author": "rbkmoney",
|
"author": "rbkmoney",
|
||||||
"main": "lib/index",
|
"main": "lib/index",
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
import { NgModule } from '@angular/core';
|
||||||
|
|
||||||
|
import { IdGeneratorService } from './id-generator.service';
|
||||||
|
|
||||||
|
@NgModule({
|
||||||
|
providers: [IdGeneratorService]
|
||||||
|
})
|
||||||
|
export class IdGeneratorModule {
|
||||||
|
}
|
@ -1 +1,2 @@
|
|||||||
|
export * from './id-generator.module';
|
||||||
export * from './id-generator.service';
|
export * from './id-generator.service';
|
||||||
|
Loading…
Reference in New Issue
Block a user