Skip to content

Commit

Permalink
docs: Added comments to explain why the different top level imports a…
Browse files Browse the repository at this point in the history
…re used
  • Loading branch information
alcb1310 committed Oct 8, 2024
1 parent 947b08d commit 8c72967
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ package main

import (
"fmt"
"io"
"io" // This is used to enable the multiwritter and be able to write to the log file and the console at the same time
"log/slog"
"os"
"path"
"path" // This is used to create the path where the log files will be stored
"strings" // This is required to conpare the evironment variables
"time" // This is used to get the current date and create the log file

Expand Down

0 comments on commit 8c72967

Please sign in to comment.