blob: 308e5244736ca4d8f299f3910df5667281854897 [file] [log] [blame]
package services
trait FileService {
def writeToFile(path: String, data: String): Boolean
def readFromFile(path: String): String
}