gotax
v0.0.2
Published
Angular implentation for gotax services
Downloads
2
Readme
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);
}
}