biold error fix
This commit is contained in:
parent
aeaddbaedf
commit
0cef1773a7
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
*.sqlite
|
||||
*.db
|
||||
assets/*
|
||||
build/*
|
@ -22,33 +22,33 @@ type DurationValue time.Duration
|
||||
|
||||
type FloatValue struct {
|
||||
EmptyValue
|
||||
val float32
|
||||
Val float32
|
||||
}
|
||||
|
||||
func (v FloatValue) Float() float32 {
|
||||
return v.val
|
||||
return v.Val
|
||||
}
|
||||
|
||||
type StringValue struct {
|
||||
EmptyValue
|
||||
val string
|
||||
Val string
|
||||
}
|
||||
|
||||
func (v StringValue) String() string {
|
||||
return v.val
|
||||
return v.Val
|
||||
}
|
||||
|
||||
type IntValue struct {
|
||||
EmptyValue
|
||||
val int
|
||||
Val int
|
||||
}
|
||||
|
||||
func (v IntValue) Int() int {
|
||||
return v.val
|
||||
return v.Val
|
||||
}
|
||||
|
||||
func (v IntValue) Float() float32 {
|
||||
return float32(v.val)
|
||||
return float32(v.Val)
|
||||
}
|
||||
|
||||
type EmptyValue struct{}
|
||||
|
@ -2,6 +2,11 @@ package models
|
||||
|
||||
import "time"
|
||||
|
||||
type Session struct {
|
||||
ID string
|
||||
User *User
|
||||
}
|
||||
|
||||
type User struct {
|
||||
ID uint64
|
||||
Username string
|
||||
|
Loading…
Reference in New Issue
Block a user