...

Source file src/edge-infra.dev/pkg/f8n/sovereign/model/model.go

Documentation: edge-infra.dev/pkg/f8n/sovereign/model

     1  package model
     2  
     3  import (
     4  	"github.com/google/uuid"
     5  )
     6  
     7  type ArtifactVersion struct {
     8  	ID           uuid.UUID
     9  	Image        string
    10  	Sha256Digest string
    11  }
    12  
    13  type Artifact struct {
    14  	ID              uuid.UUID
    15  	ProjectID       string
    16  	Repository      string
    17  	ArtifactVersion uuid.UUID
    18  }
    19  

View as plain text