18 lines
278 B
Go
18 lines
278 B
Go
package models
|
|
|
|
// TODO: Create actual models instead of simple structs
|
|
// TODO: Add correct types
|
|
type ExerciseSandbox struct {
|
|
Name string
|
|
Weight string
|
|
Reps string
|
|
}
|
|
|
|
type ExerciseAttempt struct {
|
|
Weight float32
|
|
Reps int32
|
|
}
|
|
|
|
type Exercise struct {
|
|
Name string
|
|
}
|