From e1519a934d32b43f283e60a1fb500de2eab255fd Mon Sep 17 00:00:00 2001 From: Lanre Adelowo Date: Mon, 15 Jan 2024 00:10:51 +0100 Subject: [PATCH] initial commit --- LICENSE | 21 +++++++++++++++++++++ README.MD | 1 + cmd/main.go | 4 ++++ config/config.go | 3 +++ go.mod | 3 +++ 5 files changed, 32 insertions(+) create mode 100644 LICENSE create mode 100644 README.MD create mode 100644 cmd/main.go create mode 100644 config/config.go create mode 100644 go.mod diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..bf517cf --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Lanre Adelowo + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.MD b/README.MD new file mode 100644 index 0000000..cabdb9a --- /dev/null +++ b/README.MD @@ -0,0 +1 @@ +Working on it diff --git a/cmd/main.go b/cmd/main.go new file mode 100644 index 0000000..da29a2c --- /dev/null +++ b/cmd/main.go @@ -0,0 +1,4 @@ +package main + +func main() { +} diff --git a/config/config.go b/config/config.go new file mode 100644 index 0000000..90b9d4a --- /dev/null +++ b/config/config.go @@ -0,0 +1,3 @@ +package config + +type Config struct{} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..46bc779 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/adelowo/sdump + +go 1.21.5