mirror of https://github.com/pikami/rss-dl.git
11 lines
122 B
Go
11 lines
122 B
Go
|
package helpers
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
// LogInfo - Outputs message to stdout
|
||
|
func LogInfo(str string) {
|
||
|
fmt.Println(str)
|
||
|
}
|