Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion go/core/core.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ const (
Controller string = "controller"
Action string = "action"
Framework string = "framework"
Driver string = "driver"
Driver string = "db_driver"
Traceparent string = "traceparent"
Application string = "application"
)

type CommenterOptions struct {
Expand All @@ -42,6 +43,8 @@ type CommenterOptions struct {
EnableController bool
EnableAction bool
EnableTraceparent bool
EnableApplication bool
Application string
}

func encodeURL(k string) string {
Expand Down