chore: remove deperecated api

This commit is contained in:
Steven
2023-11-22 20:26:26 +08:00
parent 2f30162add
commit 01e49e23b5
17 changed files with 0 additions and 1980 deletions

View File

@@ -1,15 +0,0 @@
package v1
// RowStatus is the status for a row.
type RowStatus string
const (
// Normal is the status for a normal row.
Normal RowStatus = "NORMAL"
// Archived is the status for an archived row.
Archived RowStatus = "ARCHIVED"
)
func (s RowStatus) String() string {
return string(s)
}