# Tabby Local Plugin
* local shells
Using the API:
```ts
import { ShellProvider } from 'tabby-local'
```
Exporting your subclasses:
@NgModule({
...
providers: [
{ provide: ShellProvider, useClass: MyShellPlugin, multi: true },
]
})