UnixAddress is defined as a function to distinguish between Unix-based implementations where the dir and inst are simply joined, and Windows-based implementations where the inst must be further altered.
(dir, inst string)
| 22 | // implementations where the dir and inst are simply joined, and Windows-based |
| 23 | // implementations where the inst must be further altered. |
| 24 | func UnixAddress(dir, inst string) string { |
| 25 | return filepath.Join(dir, inst) |
| 26 | } |
no outgoing calls