Unverified Commit 0b9c1fd7 authored by Kevin Lyda's avatar Kevin Lyda
Browse files

More notes

parent 6e92b52a
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -14,6 +14,8 @@ Have readline store a history file for the user. Configure at the `accounts.Ope

Look up how godoc does references to other things.

Look up how to run migrations on the db from embedded files.

## Things to do

  * Implement a better dclish parser.
+2 −0
Original line number Diff line number Diff line
@@ -55,6 +55,7 @@ func Open(acc string) error {
	if err != nil {
		return errors.New("account preference database problem")
	}
	// TODO: run prefs migration - move this to a storage module.

	bulldir := path.Join(xdg.DataHome, "BULLETIN")
	err = os.MkdirAll(bulldir, 0700)
@@ -65,6 +66,7 @@ func Open(acc string) error {
	if err != nil {
		return errors.New("bulletin database problem")
	}
	// TODO: run prefs migration - move this to a storage module.

	return nil
}