mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
15 lines
487 B
Go
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
|