From c6aa5fa387dbf161a65ff5463ba97c4fd06be446 Mon Sep 17 00:00:00 2001 From: sammyette <38820196+TorchedSammy@users.noreply.github.com> Date: Sun, 16 May 2021 16:18:46 -0400 Subject: [PATCH] fix: remove unneeded struct tag --- hilbish.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hilbish.go b/hilbish.go index a059aac..c3302f9 100644 --- a/hilbish.go +++ b/hilbish.go @@ -4,8 +4,8 @@ package main type Hilbish struct { - Version string `luar:"version"` // Hilbish's version - User string `luar:"user"` // Name of the user - Hostname string `luar:"hostname"` + Version string // Hilbish's version + User string // Name of the user + Hostname string }