Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 822 Bytes

platforms.md

File metadata and controls

38 lines (25 loc) · 822 Bytes

Platforms

Currently Squash support the following platformrs:

Future planes:


=> We are looking for community help to add support for more Platforms.

Platforms conform to interfaces used by squash server

type ServiceWatcher interface {

	WatchService(context context.Context, servicename string) (<-chan Container, error)
}

type ContainerLocator interface {

	Locate(context context.Context, containername string) (*Container, error)
}

Platforms conform to interface used by squash client

type Container2Pid interface {

	GetPid(context context.Context, containername string) (int, error)
}