mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
17 lines
248 B
Go
17 lines
248 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
|
|
videos := getVideos()
|
|
|
|
for i, _ := range videos {
|
|
videos[i].Description = videos[i].Description + "\n Remember to Like & Subscribe!"
|
|
}
|
|
|
|
fmt.Println(videos)
|
|
|
|
saveVideos(videos)
|
|
|
|
} |