mirror of
https://github.com/kairos-io/kairos-sdk.git
synced 2025-07-17 08:41:15 +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)
|
||
|
}
|