This commit is contained in:
Nedim
2023-09-19 08:15:42 +02:00
parent c2d6923375
commit 85e695b2d8
7 changed files with 287 additions and 49 deletions

View File

@@ -23,6 +23,9 @@ type Contract struct {
ContractInfos []ContractInfo
}
const ContractStatusActive = "active"
const ContractStatusPending = "pending"
func (Contract) Update() (bool, error) {
return false, nil
}