Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Commit

Permalink
Fix typo in import
Browse files Browse the repository at this point in the history
  • Loading branch information
wanjohiryan committed Aug 2, 2023
1 parent beda86a commit 11ff230
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 @@ -20,8 +20,8 @@ func main() {

func run(ctx context.Context) (err error) {
addr := flag.String("addr", ":443", "HTTPS server address")
cert := flag.String("cert", "./assets/cert/cert.pem", "TLS certificate file path")
key := flag.String("key", "./assets/cert/key.pem", "TLS certificate file path")
cert := flag.String("cert", "./assets/certs/cert.pem", "TLS certificate file path")
key := flag.String("key", "./assets/certs/key.pem", "TLS certificate file path")
logDir := flag.String("log-dir", "", "logs will be written to the provided directory")

dash := flag.String("dash", "./media/playlist.mpd", "DASH playlist path")
Expand Down

0 comments on commit 11ff230

Please sign in to comment.