# Backend Auth

Example usage of the authentication system

```typescript
import { Controller, Get } from '@nestjs/common'
import { UseAuth, AuthMethod } from '@backend/auth'

@UseAuth(AuthMethod.JWT)
@Controller('users')
export class UsersController {}
```
