github.com/khulnasoft-lab/tunnel-db@v0.0.0-20231117205118-74e1113bd007/pkg/vulnsrc/bucket/bucket.go (about)

     1  package bucket
     2  
     3  import (
     4  	"fmt"
     5  
     6  	"github.com/khulnasoft-lab/tunnel-db/pkg/types"
     7  )
     8  
     9  const separator = "::"
    10  
    11  func Name(ecosystem types.Ecosystem, dataSource string) string {
    12  	return fmt.Sprintf("%s%s%s", ecosystem, separator, dataSource)
    13  }