feat(plugins): Adds Mailchimp newsletter subscription

This commit is contained in:
Oliver Windall Juhl
2020-10-01 12:30:11 +02:00
committed by GitHub
parent 47e2ad2952
commit 89c21f2f5b
17 changed files with 5952 additions and 0 deletions
@@ -0,0 +1,10 @@
import { Router } from "express"
import routes from "./routes"
export default (rootDirectory) => {
const app = Router()
routes(app, rootDirectory)
return app
}