mirror of
https://github.com/pikami/rss-dl.git
synced 2024-11-28 00:18:08 +00:00
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)
|
|
}
|