14 lines
228 B
JavaScript
14 lines
228 B
JavaScript
import express from 'express';
|
|
import cors from 'cors';
|
|
|
|
import showPublicKey from '../actions/showPublicKey';
|
|
|
|
const app = express();
|
|
|
|
app.disable('x-powered-by');
|
|
|
|
app.use(cors());
|
|
app.use(showPublicKey);
|
|
|
|
export default app;
|