// // FileOperator.swift // Notes // // Created by Laurent Morvillier on 16/09/2022. // import Foundation protocol FileOperator { func requestStorage(filename: String, content: String) func getContent(filename: String) throws -> String? func lastEditDate(filename: String) throws -> Date? }