implemented basic commands: up, down, new, query, list

Signed-off-by: Sam Alba <sam.alba@gmail.com>
This commit is contained in:
Sam Alba
2021-03-23 15:27:16 -07:00
committed by Solomon Hykes
parent c33dc5138f
commit 84188535f3
8 changed files with 294 additions and 16 deletions

View File

@@ -6,49 +6,52 @@ import (
"dagger.io/go/dagger/compiler"
)
// A deployment route
type Route struct {
// Globally unique route ID
ID string
}
func CreateRoute(ctx context.Context, opts ...CreateOpt) (*Route, error) {
panic("NOT IMPLEMENTED")
}
type CreateOpt interface{} // FIXME
func DeleteRoute(ctx context.Context, opts ...DeleteOpt) (*Route, error) {
panic("NOT IMPLEMENTED")
}
type DeleteOpt interface{} // FIXME
func LookupRoute(name string, opts ...LookupOpt) (string, error) {
func LookupRoute(name string, opts ...LookupOpt) (*Route, error) {
panic("NOT IMPLEMENTED")
}
type LookupOpt interface{} // FIXME
func LoadRoute(ctx context.Context, ID string, opts ...LoadOpt) (*Route, error) {
func LoadRoute(ctx context.Context, id string, opts ...LoadOpt) (*Route, error) {
panic("NOT IMPLEMENTED")
}
type LoadOpt interface{} // FIXME
type LoadOpt interface{} // FIXME
func (r *Route) Up(ctx context.Context, opts ...UpOpt) error {
panic("NOT IMPLEMENTED")
}
type UpOpt interface{} // FIXME
func (r *Route) Down(ctx context.Context, opts ...DownOpt) error {
panic("NOT IMPLEMENTED")
}
type DownOpt interface{} // FIXME
func (r *Route) Query(ctx context.Context, expr interface{}, opts ...QueryOpt) (*compiler.Value, error) {
panic("NOT IMPLEMENTED")
}
type QueryOpt interface{} // FIXME
// FIXME: manage base