mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-08 04:50:11 +02:00
11 lines
178 B
Go
11 lines
178 B
Go
package helpers
|
|
|
|
import "time"
|
|
|
|
type Number interface {
|
|
uint8 | uint16 | uint32 | uint64 | uint |
|
|
int8 | int16 | int32 | int64 | int |
|
|
float32 | float64 |
|
|
time.Duration
|
|
}
|