https://github.com/notwithering/sport
Provides many constants for interacting between sport team names.
https://github.com/notwithering/sport
Last synced: 6 months ago
JSON representation
Provides many constants for interacting between sport team names.
- Host: GitHub
- URL: https://github.com/notwithering/sport
- Owner: notwithering
- License: mit
- Created: 2024-05-20T23:39:51.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-25T01:47:38.000Z (about 2 years ago)
- Last Synced: 2024-06-19T15:13:37.766Z (about 2 years ago)
- Language: Go
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sport
The Sport Go package provides many constants for interacting between sport team names.
## Examples
### NBA
```go
package main
import (
"fmt"
nba "github.com/notwithering/sport/NBA"
)
func main() {
fmt.Println(nba.ClevelandFullTeam)
}
```
> Cleveland Cavaliers
### NFL
```go
package main
import (
"fmt"
nfl "github.com/notwithering/sport/NFL"
)
func main() {
fmt.Println(nfl.CincinnatiFullTeam)
}
```
> Cincinnati Bengals