Unverified Commit 75d22aac authored by Kevin Lyda's avatar Kevin Lyda
Browse files

Update module docs

parent e02e3e49
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
// Package editor provides a simple editor.
/*
Package editor provides a simple editor.

This is implemented with [github.com/gdamore/tcell] and
[github.com/rivo/tview].  It would be good to make this work more like EDT.

In addition, it might be an idea to offer a set of editors that work
like EDT, nano, vi and emacs and allow users to set a preference.
*/
package editor

import (
+7 −1
Original line number Diff line number Diff line
// Package folders are all the routines and sql for managing folders.
/*
Package folders have higher level routines for working with the
[storage] routines.

This module should likely be stripped down to some routines for verifying
things about folders.  The storage specific bits should go to [storage].
*/
package folders

import (
+0 −1
Original line number Diff line number Diff line
// Package folders are all the routines and sql for managing folders.
package folders

import "unicode"
+3 −0
Original line number Diff line number Diff line
/*
Package pager implements the pager.  This is used for any large block of
text that bulletin needs to show.

This is very unix specific. Using something like [github.com/gdamore/tcell]
would be more portable.
*/
package pager

+1 −1
Original line number Diff line number Diff line
// Package users manages users.
// Package users has routines for verifying things about users.
package users

import (