major scoring implementation, major frontend work

This commit is contained in:
2024-12-14 01:05:26 -06:00
parent 6f0b2050ad
commit 7fc5980e3b
15 changed files with 541 additions and 75 deletions

View File

@@ -6,6 +6,8 @@ import (
)
type AdvancedSearch struct {
Limit int `json:"limit,omitempty"`
AllocatedStorage float64 `json:"allocated_storage,omitempty"`
Verified *bool `json:"verified,omitempty"`
ComputeCap *ComparableInteger `json:"compute_cap,omitempty"`
DiskSpace *ComparableInteger `json:"disk_space,omitempty"`
@@ -50,6 +52,7 @@ type AdvancedSearch struct {
func NewSearch() *AdvancedSearch {
return &AdvancedSearch{
Rented: Pointer(false),
Limit: 500,
}
}