feat(medusa): tracking links (#177)

* fix: creates tracking links on fulfillments

* fix: typo
This commit is contained in:
Sebastian Rindom
2021-02-18 16:59:19 +01:00
committed by GitHub
parent 24529bd025
commit 99ad43bf47
18 changed files with 371 additions and 26 deletions

View File

@@ -0,0 +1,19 @@
import { NotificationService } from "medusa-interfaces";
class TestNotiService extends NotificationService {
static identifier = "test-not";
constructor() {
super();
}
async sendNotification() {
return Promise.resolve();
}
async resendNotification() {
return Promise.resolve();
}
}
export default TestNotiService;