mirror of
https://github.com/warmbly/warmbly.git
synced 2026-09-06 08:01:24 +00:00
8 lines
108 B
Go
8 lines
108 B
Go
package models
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type Log struct {
|
|
WorkerID uuid.UUID `json:"worker_id"`
|
|
}
|