initial commit

This commit is contained in:
2024-08-07 00:20:45 +03:00
commit fbe18d86be
6 changed files with 395 additions and 0 deletions

View File

@ -0,0 +1,15 @@
package entities
import "time"
type DeviceID string
type DeviceStatistics struct {
ID DeviceID
IncomingTrafficBytes int
OutgoingTrafficBytes int
IncomingRPS int
ReadRPS int
WriteRPS int
UpdatedAt time.Time
}