From 37659974d168d94b5940080980fe7597bba5869a Mon Sep 17 00:00:00 2001 From: CJ Brewer Date: Mon, 21 Oct 2024 17:26:13 -0600 Subject: [PATCH] feat: release v0.1.0 --- main.go => goeql.go | 2 +- main_test.go => goeql_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename main.go => goeql.go (99%) rename main_test.go => goeql_test.go (99%) diff --git a/main.go b/goeql.go similarity index 99% rename from main.go rename to goeql.go index 58b20c0..2ba1a71 100644 --- a/main.go +++ b/goeql.go @@ -1,4 +1,4 @@ -package main +package goeql // goeql is a collection of helpers for serializing and deserializing values // into the shape EQL and the CipherStash Proxy needs to enable encryption and diff --git a/main_test.go b/goeql_test.go similarity index 99% rename from main_test.go rename to goeql_test.go index f3a16c1..7dcba21 100644 --- a/main_test.go +++ b/goeql_test.go @@ -1,4 +1,4 @@ -package main +package goeql import ( "encoding/json"