(id string)
| 73 | } |
| 74 | |
| 75 | func newApp(id string) *app { |
| 76 | return &app{id: id, FileSystemBase: FileSystemBase{resolvePath: func(name FSName) string { |
| 77 | return util.SafeJoinFilePaths(appsPath, id, string(name)) |
| 78 | }}} |
| 79 | } |
| 80 | |
| 81 | type app struct { |
| 82 | mu sync.RWMutex |
no test coverage detected