11 lines
73 B
Go
11 lines
73 B
Go
|
package temperature
|
||
|
|
||
|
type Unit int
|
||
|
|
||
|
const (
|
||
|
None Unit = iota
|
||
|
K
|
||
|
C
|
||
|
F
|
||
|
)
|