Skip to content

Commit

Permalink
update main.go
Browse files Browse the repository at this point in the history
  • Loading branch information
mkadirtan committed May 14, 2024
1 parent 2f3253d commit 28cb221
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 2 additions & 3 deletions cmd/main.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main
package cmd

import (
"bufio"
Expand All @@ -20,8 +20,7 @@ type app struct {

var a app

func main() {
// outputLogger := log.New(os.Stdout, "", 0)
func Run() {
a.debugLogger = log.New(os.Stderr, "", 0)
a.outputLogger = log.New(os.Stdout, "", 0)

Expand Down
7 changes: 7 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package main

import "github.com/mkadirtan/feed-toolbelt/cmd"

func main() {
cmd.Run()
}

0 comments on commit 28cb221

Please sign in to comment.