From 82c42460f640365adef97dbd530aeac465206c19 Mon Sep 17 00:00:00 2001 From: Brian Buller Date: Wed, 21 Oct 2015 08:48:18 -0500 Subject: [PATCH] Updating from gogs repo gogs.bullercodeworks.com/brian/boltbrowser --- .gitignore | 28 ++++++++++++++++++++++++++++ cursor.go | 6 ++++++ util.go | 1 + 3 files changed, 35 insertions(+) create mode 100644 .gitignore create mode 100644 cursor.go create mode 100644 util.go diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0d5c94f --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +# Swap Files +*.swp + +# Compiled Object files, Static and Dynamic libs (Shared Objects) +*.o +*.a +*.so + +# Folders +_obj +_test + +# Architecture specific extensions/prefixes +*.[568vq] +[568vq].out + +*.cgo1.go +*.cgo2.c +_cgo_defun.c +_cgo_gotypes.go +_cgo_export.* + +_testmain.go + +*.exe + +# Test Database +test.db \ No newline at end of file diff --git a/cursor.go b/cursor.go new file mode 100644 index 0000000..b3b5aa4 --- /dev/null +++ b/cursor.go @@ -0,0 +1,6 @@ +package main + +type Cursor struct { + x int + y int +} diff --git a/util.go b/util.go new file mode 100644 index 0000000..06ab7d0 --- /dev/null +++ b/util.go @@ -0,0 +1 @@ +package main