(ctx context.Context, path string)
| 15 | type FileIO interface { |
| 16 | Exists(ctx context.Context, path string) (exists bool, err error) |
| 17 | Create(ctx context.Context, path string) (err error) |
| 18 | Delete(ctx context.Context, path string) (err error) |
| 19 | ReadJSON(ctx context.Context, path string) (data []byte, err error) |
| 20 | WriteJSON(ctx context.Context, path string, data []byte) (err error) |