Start new Node.js-based backend

This commit is contained in:
2020-05-26 16:07:52 +02:00
parent 27eb10d222
commit 7212f46191
16 changed files with 1200 additions and 43 deletions

View File

@ -0,0 +1,12 @@
export class Entry {
constructor(singer_name: string, song: string, auth_cookie?: string) {
this.singer_name=singer_name;
this.song=song;
this.auth_cookie = auth_cookie;
}
singer_name: string;
song: string; //Actually the ID of the Song
auth_cookie?: string; //The "cookie" to authenticate for changing an entry. Null otherwise
}