// ObjectStore (backend) interface // // Licensed under CC0 1.0 Universal: // https://creativecommons.org/publicdomain/zero/1.0/legalcode package objectstore type ObjectStore interface { CreateObject(bucketId string, objectId string, content string) GetObject(bucketId string, objectId string) (string, error) DeleteObject(bucketId string, objectId string) error }