diff options
author | Julien Dessaux | 2025-01-02 18:23:04 +0100 |
---|---|---|
committer | Julien Dessaux | 2025-01-02 18:23:04 +0100 |
commit | 99ff8441dae1f3784d6b756fb55d4f128338aa8c (patch) | |
tree | bae5da8a1d36555d910235d9a681db2370f4d369 /pkg | |
parent | chore(tfstated): prepare for listening on a second port (diff) | |
download | tfstated-99ff8441dae1f3784d6b756fb55d4f128338aa8c.tar.gz tfstated-99ff8441dae1f3784d6b756fb55d4f128338aa8c.tar.bz2 tfstated-99ff8441dae1f3784d6b756fb55d4f128338aa8c.zip |
chore(tfstated): code cleanup
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/backend/run.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/pkg/backend/run.go b/pkg/backend/run.go index a6d2f03..2af47ab 100644 --- a/pkg/backend/run.go +++ b/pkg/backend/run.go @@ -2,7 +2,6 @@ package backend import ( "context" - "io" "log/slog" "net" "net/http" @@ -14,11 +13,7 @@ import ( func Run( ctx context.Context, db *database.DB, - //args []string, getenv func(string) string, - //stdin io.Reader, - //stdout io.Writer, - stderr io.Writer, ) *http.Server { mux := http.NewServeMux() addRoutes( |