16 lines
251 B
Go
16 lines
251 B
Go
package starlog
|
|
|
|
import "b612.me/starlog/internal/fsutil"
|
|
|
|
func Exists(path string) bool {
|
|
return fsutil.Exists(path)
|
|
}
|
|
|
|
func IsFile(path string) bool {
|
|
return fsutil.IsFile(path)
|
|
}
|
|
|
|
func IsFolder(path string) bool {
|
|
return fsutil.IsFolder(path)
|
|
}
|