Blob


1 /*
2 Package p9pnew implements a compliant 9P2000 client and server library for use
3 in modern, production Go services. This package differentiates itself in that
4 is has departed from the plan 9 implementation primitives and better follows
5 idiomatic Go style.
7 Multiversion Support
9 Currently, there is not multiversion support. The hooks and functionality are
10 in place to add multi-version support. Generally, the correct space to do this
11 is in the codec. Types, such as Dir, simply need to be extended to support the
12 possibility of extra fields.
13 */
14 package p9pnew