feat: added ticket model

This commit is contained in:
Darwin Cereska
2026-03-19 14:35:45 +01:00
parent 4aeb44c5bb
commit d8eec0d056
4 changed files with 16 additions and 0 deletions

10
internal/models/models.go Normal file
View File

@@ -0,0 +1,10 @@
package models
import "time"
type Ticket struct {
ID int64
Attributes map[string]float64
Tags map[string]float64
CreatedAt time.Time
}

View File

@@ -0,0 +1 @@
package parser

4
internal/redis/redis.go Normal file
View File

@@ -0,0 +1,4 @@
package redis
type Pool struct {
}

View File

@@ -0,0 +1 @@
package validator