removed useless tls binary name
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
Jake Hillion 2022-05-23 03:25:00 +01:00
parent 2017d7c688
commit 5d1076f975
2 changed files with 0 additions and 5 deletions

View File

@ -6,7 +6,6 @@ use std::net::{TcpListener, TcpStream};
fn main() {
let mut args = std::env::args();
let _bin = args.next();
let entrypoint = args.next();
match entrypoint {
@ -27,7 +26,6 @@ fn connection_listener_entrypoint() {
// argument parsing
let mut args = std::env::args();
let _bin = args.next();
let _entrypoint = args.next();
let http_handler_trigger = args.next();
@ -95,7 +93,6 @@ fn http_handler_entrypoint() {
// argument parsing
let mut args = std::env::args();
let _bin = args.next();
let _entrypoint = args.next();
let stream = args.next();

View File

@ -2,7 +2,6 @@
"entrypoints": {
"connection_listener": {
"args": [
"BinaryName",
"Entrypoint",
{
"FileSocket": {
@ -41,7 +40,6 @@
"FileSocket": "http"
},
"args": [
"BinaryName",
"Entrypoint",
"Trigger"
],