aboutsummaryrefslogtreecommitdiff
path: root/app.ts
diff options
context:
space:
mode:
Diffstat (limited to 'app.ts')
-rw-r--r--app.ts20
1 files changed, 0 insertions, 20 deletions
diff --git a/app.ts b/app.ts
index 264b517..0dce8b6 100644
--- a/app.ts
+++ b/app.ts
@@ -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;