removed the .start() method as it is deprecated

This commit is contained in:
Viraj Doshi 2025-06-28 01:37:26 -04:00 committed by GitHub
parent 179dbfaecc
commit 4a7b0750ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 1 deletions

View File

@ -237,7 +237,6 @@ if (require.main === module) {
fs.readFile(path.resolve(argv.db_path), function(err, data) {
if (err) throw err;
feature_list = JSON.parse(data);
routeServer.start();
});
});
}