rclone/vendor/github.com/goftp/server/fileinfo.go

15 lines
266 B
Go
Raw Normal View History

2018-09-14 18:16:54 +02:00
// 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
}