mirror of
https://github.com/kairos-io/kairos-sdk.git
synced 2025-08-18 23:17:00 +00:00
8 lines
235 B
Go
8 lines
235 B
Go
package types
|
|
|
|
// KairosFS is our interface for methods that need an FS
|
|
// We should try to keep it to a minimum so we can change between backends easily if needed
|
|
type KairosFS interface {
|
|
ReadFile(filename string) ([]byte, error)
|
|
}
|