:sparkles:🎨 Add project zip download and remove lib/app folder

This commit is contained in:
brunosimon
2017-07-30 16:53:55 +02:00
parent 55c6204188
commit 46b9dac6f0
14 changed files with 1496 additions and 513 deletions
+20
View File
@@ -0,0 +1,20 @@
'use strict'
class IDs
{
constructor()
{
this.lastId = 0
}
getId()
{
const lastId = ++this.lastId
return lastId
}
}
const ids = new IDs()
module.exports = ids