mirror of
https://github.com/containers/podman.git
synced 2025-08-06 03:19:52 +08:00

This way we don't need to stub in structures for other OSes (e.g. the Darwin stub in a Linux-only file). Matthew was concerned about errors unmarshalling, say, a Linux state object on a Windows box [1], but we can address that in checks when loading the database [2]. [1]: https://github.com/projectatomic/libpod/pull/1015#discussion_r198649043 [2]: https://github.com/projectatomic/libpod/pull/1015#discussion_r198802956 Signed-off-by: W. Trevor King <wking@tremily.us> Closes: #1033 Approved by: mheon
6 lines
71 B
Go
6 lines
71 B
Go
// +build !linux
|
|
|
|
package libpod
|
|
|
|
type containerPlatformState struct{}
|