Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-pierce committed Sep 5, 2021
0 parents commit e13d9ad
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
11 changes: 11 additions & 0 deletions main/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package main

import (
"fmt"
"os"
)

func main() {
fmt.Printf("%d", len(os.Args))
fmt.Println("What artist would you like to search?")
}
6 changes: 6 additions & 0 deletions scraper/scraper.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package scraper

import (
"io"
"strings"
)

0 comments on commit e13d9ad

Please sign in to comment.