package Seeder import "log" func Seed() { log.Println("Seeding users...") SeedUsers() log.Println("Seeding posts...") SeedPosts() }