1
0
mirror of https://github.com/beego/bee.git synced 2025-06-26 14:00:19 +00:00

Add support for Delve

This adds support for debugging tool Delve. The command dlv starts a
debugging REPL that allows the user to debug his application using Delve
tool. Resolves #365.
This commit is contained in:
Faissal Elamraoui
2017-03-19 23:41:36 +01:00
parent 9760ce6623
commit f9939bc286
2 changed files with 111 additions and 1 deletions

View File

@ -12,7 +12,7 @@
// License for the specific language governing permissions and limitations
// under the License.
// Bee is a tool for developing applications based on beego framework.
// Package cmd ...
package cmd
import (
@ -20,6 +20,7 @@ import (
_ "github.com/beego/bee/cmd/commands/api"
_ "github.com/beego/bee/cmd/commands/bale"
_ "github.com/beego/bee/cmd/commands/beefix"
_ "github.com/beego/bee/cmd/commands/dlv"
_ "github.com/beego/bee/cmd/commands/dockerize"
_ "github.com/beego/bee/cmd/commands/generate"
_ "github.com/beego/bee/cmd/commands/hprose"