Skip to content
This repository was archived by the owner on Jan 16, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const express = require('express')
const app = express()
const port = 3000

app.get('/', (_, res) => {
res.json({
message: "Connected;"
}).send();
})

app.listen(port, () => {
console.log(`App listening at http://localhost:${port}`)
})
33 changes: 33 additions & 0 deletions model.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"bbruh@ukma.edu.ua": {
"fullName": "Bruh Bruhovych",
"faculty": "Faculty of Informatics",
"speciality": "Computer Science",
"semester": [
{
"num": 1,
"subjects": [
{
"title": "Blockchain",
"tutor": "bublik@ukma.edu.ua",
"grade": 97,
"tasks": [
{
"title": "task1",
"grade": 9
},
{
"title": "task2",
"grade": 10
},
{
"title": "task3",
"grade": 10
}
]
}
]
}
]
}
}
Loading