Golang analogy of the different gospels

Golang analogy of the different gospels
package main

type Apostle struct {
	Gospel string
	To     string
	Active bool
}

func main() {
	var Peter = Apostle{
		Gospel: "Kingdom",
		To:     "Israel",
		Active: false,
	}

	var Paul = Apostle{
		Gospel: "Grace",
		To:     "Gentiles",
		Active: true,
	}
}