]> git.lizzy.rs Git - go-fscache.git/blob - cache_posix.go
Initial commit
[go-fscache.git] / cache_posix.go
1 // +build !windows
2
3 package fscache
4
5 import (
6         "strings"
7 )
8
9 func filterDots(parts ...string) []string {
10         return parts
11 }
12
13 func filterDotsAll(parts ...string) []string {
14         return parts
15 }