The mighty, self-hostable Git server for the command line 🍦
1package proto 2 3// Org is an interface representing a organization. 4type Org interface { 5 // ID returns the user's ID. 6 ID() int64 7 // Name returns the org's name. 8 Name() string 9 // DisplayName 10 DisplayName() string 11}