0.0.2 • Published 4 years ago

gotax v0.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

Gotax Library

This library was generated with Angular CLI version 9.1.1.

How to use

Import the module to your Module and provide the service urls:

import {GotaxModule} from "gotax"

@NgModule({

  imports: [
      GotaxModule.forRoot(
        userServiceUrl : 'https://someurl.com/';
        organizationServiceUrl : 'https://someurl.com/';
        servieServiceUrl : 'https://someurl.com/';
    )
  ],

})

Import services into your component

import {AuthenticationService} from "gotax"


export class SomeClass(){
    constructor(private authService:AuthenticationService){

    }

    someFunction(){
        authservice.login(userName, password);
    }
}
0.0.2

4 years ago

0.0.1

4 years ago