Skip to content
Snippets Groups Projects
sql.go 132 B
Newer Older
  • Learn to ignore specific revisions
  • package db
    
    var selectObjectByBucketKey = `
    SELECT
    	content_type,
    	dest_url,
    	"type"
    FROM
    	objects
    WHERE
    	bucket_key = $1
    LIMIT 1
    `