feat: publish standalone worker
Separate worker packaging and service lifecycle from the control plane.
Этот коммит содержится в:
11
app/models/concerns/timestamped.go
Обычный файл
11
app/models/concerns/timestamped.go
Обычный файл
@@ -0,0 +1,11 @@
|
||||
package concerns
|
||||
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
// Timestamped provides functionality.
|
||||
type Timestamped struct {
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
UpdatedAt time.Time `json:"updated_at"`
|
||||
}
|
||||
Ссылка в новой задаче
Block a user