Skip to content

Commit

Permalink
Implement new method Resolve of kopia's fs.Symlink (#3280)
Browse files Browse the repository at this point in the history
  • Loading branch information
viveksinghggits authored Dec 9, 2024
1 parent 45596e4 commit 57d669a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/virtualfs/symlink.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,7 @@ var _ fs.Symlink = (*inmemorySymlink)(nil)
func (imsl *inmemorySymlink) Readlink(ctx context.Context) (string, error) {
panic("Symlinks not supported")
}

func (imsl *inmemorySymlink) Resolve(ctx context.Context) (fs.Entry, error) {
panic("Resolve not supported")
}

0 comments on commit 57d669a

Please sign in to comment.