aboutsummaryrefslogtreecommitdiff
path: root/client_options.go
diff options
context:
space:
mode:
Diffstat (limited to 'client_options.go')
-rw-r--r--client_options.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/client_options.go b/client_options.go
new file mode 100644
index 0000000..e489988
--- /dev/null
+++ b/client_options.go
@@ -0,0 +1,11 @@
+// SPDX-FileCopyrightText: 2024 M. Shulhan <ms@kilabit.info>
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+package kbbi
+
+// ClientOptions define the client options.
+type ClientOptions struct {
+ // Debug level for client connection.
+ // Level 1 print the received HTML page as plain text.
+ Debug int
+}