diff --git a/Sources/Hummingbird/Files/LocalFileSystem.swift b/Sources/Hummingbird/Files/LocalFileSystem.swift index 7cae7e256..042c37958 100644 --- a/Sources/Hummingbird/Files/LocalFileSystem.swift +++ b/Sources/Hummingbird/Files/LocalFileSystem.swift @@ -43,7 +43,7 @@ public struct LocalFileSystem: FileProvider { /// - rootFolder: Root folder to serve files from /// - threadPool: Thread pool used when loading files /// - logger: Logger to output root folder information - init(rootFolder: String, threadPool: NIOThreadPool, logger: Logger) { + public init(rootFolder: String, threadPool: NIOThreadPool, logger: Logger) { if rootFolder.last != "/" { self.rootFolder = "\(rootFolder)/" } else {