group.go (107B)
1 package main 2 3 type Group struct { 4 Name string 5 } 6 7 func NewGroup(name string) Group { 8 return Group{name} 9 }