ecode-utils
v0.0.1
Published
ecode 工具模块 定义各工具
Readme
EcodeUtils
ecode 工具模块 定义各工具
安装
npm install ecode-utils在moudle里引入
@NgModule({
providers: [
],
imports: [
EcodeUtilsModule
]
})在service里使用
import { CacheService, RsaService } from 'ecode-utils';
@Injectable({
providedIn: 'root'
})
export class TestService {
constructor(private cacheService:CacheService,private rasService:RsaService) { }
}