feat: added ticket model
This commit is contained in:
10
internal/models/models.go
Normal file
10
internal/models/models.go
Normal 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
|
||||
}
|
||||
1
internal/parser/parser.go
Normal file
1
internal/parser/parser.go
Normal file
@@ -0,0 +1 @@
|
||||
package parser
|
||||
4
internal/redis/redis.go
Normal file
4
internal/redis/redis.go
Normal file
@@ -0,0 +1,4 @@
|
||||
package redis
|
||||
|
||||
type Pool struct {
|
||||
}
|
||||
1
internal/validator/validator.go
Normal file
1
internal/validator/validator.go
Normal file
@@ -0,0 +1 @@
|
||||
package validator
|
||||
Reference in New Issue
Block a user