mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 01:25:14 +01:00
6d58d9a86f
Closing #3674
15 lines
266 B
Go
15 lines
266 B
Go
// Copyright 2018 The goftp Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package server
|
|
|
|
import "os"
|
|
|
|
type FileInfo interface {
|
|
os.FileInfo
|
|
|
|
Owner() string
|
|
Group() string
|
|
}
|