diff options
Diffstat (limited to 'app.ts')
-rw-r--r-- | app.ts | 20 |
1 files changed, 0 insertions, 20 deletions
@@ -17,25 +17,5 @@ app.use(express.errorHandler()); app.configure(services); -// Mock data -app.service('polls').create({ - contents: { - left: { - url: 'https://github.com/eug-vs.png', - votes: 10 - }, - right: { - url: 'https://github.com/ilyayudovin.png', - votes: 15 - } - } -}); - -app.service('users').create({ - name: 'John Doe', - age: 20, - avatarUrl: 'https://github.com/ilyayudovin.png' -}); - export default app; |