Skip to content

Commit

Permalink
Merge pull request #18 from andyzaharia/main
Browse files Browse the repository at this point in the history
Updated SFTPPathComponent properties to be public
  • Loading branch information
Joannis committed Dec 6, 2022
2 parents daff615 + d573b75 commit 8199c65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/Citadel/SFTP/SFTPMessage.swift
Expand Up @@ -2,9 +2,9 @@ import NIO
import Foundation

public struct SFTPPathComponent {
let filename: String
let longname: String
let attributes: SFTPFileAttributes
public let filename: String
public let longname: String
public let attributes: SFTPFileAttributes

public init(filename: String, longname: String, attributes: SFTPFileAttributes) {
self.filename = filename
Expand Down

0 comments on commit 8199c65

Please sign in to comment.