mirror of
https://github.com/pikami/rss-dl.git
synced 2024-11-25 06:57:36 +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)
|
|
}
|