package service import "github.com/google/uuid" type Service interface { ID() uuid.UUID Close() error }