docs: added missing import in Create Service docs (#2446)

This commit is contained in:
Shahed Nasser
2022-10-14 15:02:46 +03:00
committed by GitHub
parent f79698838c
commit 554360ba19

View File

@@ -10,6 +10,7 @@ For example, if you want to create a service `helloService`, create the file `he
```ts
import { TransactionBaseService } from '@medusajs/medusa';
import { EntityManager } from 'typeorm';
class HelloService extends TransactionBaseService {
protected manager_: EntityManager;