Skip to content

Commit

Permalink
adds a test query
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaslopezj committed Mar 31, 2023
1 parent 1ca135d commit 7b51288
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions app/App/offline/initConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ export interface AuthorizationRequest {

export const pendingRequests: AuthorizationRequest[] = []

app.get('/', (req, res) => {
res.end(`OK`)
})

app.post('/init', (req, res) => {
const params = req.body
const token = uuidv4()
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "justo-crisp",
"version": "0.2.1",
"version": "0.2.2",
"license": "MIT",
"description": "Crisp POS",
"author": "nicolaslopezj",
Expand Down

0 comments on commit 7b51288

Please sign in to comment.