mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-23 00:32:18 +01:00
28 lines
644 B
Go
28 lines
644 B
Go
package services
|
|
|
|
// type Webdav struct {
|
|
// }
|
|
|
|
// func NewWebdav() Webdav {
|
|
// return Webdav{}
|
|
// }
|
|
|
|
// func (w Webdav) Mkdir(ctx context.Context, name string, perm os.FileMode) error {
|
|
// return nil
|
|
// }
|
|
|
|
// func (w Webdav) OpenFile(ctx context.Context, name string, flag int, perm os.FileMode) (File, error) {
|
|
// return File{}, nil
|
|
// }
|
|
|
|
// func (w Webdav) RemoveAll(ctx context.Context, name string) error {
|
|
// return nil
|
|
// }
|
|
|
|
// func (w Webdav) Rename(ctx context.Context, oldName, newName string) error {
|
|
// return nil
|
|
// }
|
|
|
|
// func (w Webdav) Stat(ctx context.Context, name string) (os.FileInfo, error) {
|
|
// return nil, nil
|
|
// }
|