Angular helper to get current country by TimeZone


## Versions

| Angular version | package version |
| --------------- | --------------- |
| 15.x|15.x|
| 16.x|15.x, 16.x|

## Installation

```shell
npm install --save @solidexpert/auth
```


## Usage

Add `AuthModule` to your list of module imports:

```typescript
import { AuthenticationService, AuthGuard, AuthInterceptor,PermissionInterceptor, AuthModule, IAuthenticationService } from '@solidexpert/auth';



@NgModule({
  imports: [
  ...
    AuthModule,
  ...
  ],

```

Setup your providers to use Solid Auth

```typescript
 providers: [
  ...,
    AuthGuard,
    { provide: IAuthenticationService, useClass: AuthenticationService },
    {
        provide: 'APP_SITE_FULL_URL',
        useValue: environment.sitePath,
    },
    {
        provide : HTTP_INTERCEPTORS,
        useClass: AuthInterceptor,
        multi   : true
    },
    {
        provide : HTTP_INTERCEPTORS,
        useClass: PermissionInterceptor,
        multi   : true
    },
...
  ],
```

setup yout callback url url



```typescript
export const appRoutes: Route[] = [
  ...
  { path: 'callback', component: CallbackAuthComponent, canActivate: [callbackGuard], }
  ...
];
```


Done!
