Files
fn-serverless/api/agent/drivers/doc.go
Justin Ko 9cb883ca68 Godoc fixes (#898)
Add some godoc comments for the api/agent package and some of its
subpackages.
2018-03-28 10:16:40 -07:00

15 lines
487 B
Go

// Package drivers is intended as a general purpose container abstraction
// library. It abstracts across the differences between different container
// runtimes (e.g. Docker, Rkt, etc.) and provides utlities and data types that
// are common across all runtimes.
//
// Docker Driver
//
// The docker driver runs functions as Docker containers.
//
// Mock Driver
//
// The mock driver pretends to run functions but doesn't actually run them. This
// is for testing only.
package drivers