gridscale / gridscale/gsclient-go
Make GSTime a type definition
Open
breaking-change
- Dominant language
- Go
- Stars
- 8
- Forks
- 7
- PR merge metrics
- No merged PRs in 30d
Description
Don't use embedded struct for `GSTime`. Right now it is
```
type GSTime struct {
time.Time
}
```
Make it
```
type GSTime time.Time
```
so that we can use type conversion.
Contributor guide
Assessment
This issue has not been assessed yet.