Skip to content

Commit

Permalink
Some Fuckups: Versioning continues from 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
akshatkot committed Oct 8, 2024
1 parent 1cb41f2 commit 66ce469
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hasty-server",
"version": "0.6.0",
"version": "0.7.0",
"main": "./server/index.js",
"directories": {
"lib": "lib",
Expand Down
1 change: 1 addition & 0 deletions server/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
const { httpParser } = require('../lib/httpParser.js'); // Import the httpParser function from the httpParser.js file
const net = require('net');// Import the net module from Node.JS
const Response = require('./response.js' ); // Import the response object
import {warn} from 'console'
function getSocket(callback,context){
return net.createServer(Socket=>callback(Socket,context))
}
Expand Down

0 comments on commit 66ce469

Please sign in to comment.