commit ba353f358bc496e69ab151ff377a4d041f306ad5 from: Stephen J Day date: Thu Nov 05 03:38:48 2015 UTC fs/p9p/new: add documentation comment for package Signed-off-by: Stephen J Day commit - 269e4d4b21f59c17f781c377325982e8cd369857 commit + ba353f358bc496e69ab151ff377a4d041f306ad5 blob - /dev/null blob + 17ba2f9afa9bd7cf54fd6e4e6fb7cdec1a31a392 (mode 644) --- /dev/null +++ doc.go @@ -0,0 +1,14 @@ +/* +Package p9pnew implements a compliant 9P2000 client and server library for use +in modern, production Go services. This package differentiates itself in that +is has departed from the plan 9 implementation primitives and better follows +idiomatic Go style. + +Multiversion Support + +Currently, there is not multiversion support. The hooks and functionality are +in place to add multi-version support. Generally, the correct space to do this +is in the codec. Types, such as Dir, simply need to be extended to support the +possibility of extra fields. +*/ +package p9pnew