summaryrefslogtreecommitdiff
path: root/internal/lcontext
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lcontext')
-rw-r--r--internal/lcontext/lcontext.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/internal/lcontext/lcontext.go b/internal/lcontext/lcontext.go
new file mode 100644
index 0000000..bd51d94
--- /dev/null
+++ b/internal/lcontext/lcontext.go
@@ -0,0 +1,8 @@
+package lcontext
+
+// LContext stands for line context and is here to help filtering out only specific lines.
+type LContext struct {
+ AfterContext int
+ BeforeContext int
+ MaxCount int
+}