Skip to content
Snippets Groups Projects
Select Git revision
2 results Searching

Makefile

Blame
  • help.go 210 B
    // Package repl implements the main event loop.
    package repl
    
    import (
    	"git.lyda.ie/kevin/bulletin/dclish"
    )
    
    // ActionHelp handles the `HELP` command.
    func ActionHelp(_ *dclish.Command) error {
    	return nil
    }