added blobstore and capability packages

This commit is contained in:
Brad Rydzewski
2014-09-24 21:46:09 -07:00
parent 9a3f33b9c3
commit ed0024efa1
8 changed files with 234 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package blobsql
const (
tableBlob = "blobs"
)
const (
queryBlob = `
SELECT *
FROM blobs
WHERE blob_path = ?;
`
deleteBlob = `
DELETE FROM blobs
WHERE blob_path = ?;
`
)