Skip to content

Commit 36bc529

Browse files
committed
Update slack_message_parser.go
1 parent 31b9896 commit 36bc529

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

slack_message_parser.go renamed to cmd/slack_message_parser.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ type CSVRecord struct {
7373
}
7474

7575
func main() {
76-
files, err := filepath.Glob("./SlackMessages/*.json")
76+
files, err := filepath.Glob("../SlackMessages/*.json")
7777
if err != nil {
7878
fmt.Println(err)
7979
}
@@ -147,7 +147,7 @@ func main() {
147147
csvRecords = append(csvRecords, record)
148148
}
149149

150-
csvFile, err := os.Create("slack_records.csv")
150+
csvFile, err := os.Create("../slack_records.csv")
151151
if err != nil {
152152
fmt.Println(err)
153153
}

0 commit comments

Comments
 (0)