Skip to content
Snippets Groups Projects
Commit bf7bdebb authored by Tucker Siegel's avatar Tucker Siegel
Browse files

clean

parent a0f5a06f
No related branches found
No related tags found
1 merge request!17Adds rabbitmq messaging
package models
import (
"fmt"
"strconv"
"time"
......@@ -24,12 +23,10 @@ type SingleFreezingDate struct {
func (s *SingleFreezingDate) IncreaseCount() {
s.Count = s.Count + 1
fmt.Println(s.Count)
}
func (s *SingleFreezingDate) AddYear(year int) {
s.Years = append(s.Years, year)
fmt.Println(s.Years)
}
type FreezingDateResponse struct {
......
......@@ -64,7 +64,6 @@ func GddFindFirstByYearAndLocation(year int, location entities.Location) entitie
var g entities.Gdd
err := coll.FindOne(common.Ctx, filter).Decode(&g)
fmt.Println(g)
if err != nil {
panic(config.NO_DATA_FOUND)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment