marcel-dempers 75e20b239f part 1,2,3
2021-01-04 21:17:54 +11:00

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)
}