Updating from gogs repo

gogs.bullercodeworks.com/brian/boltbrowser
This commit is contained in:
Brian Buller 2015-10-21 08:48:18 -05:00
parent 908848fed6
commit 82c42460f6
3 changed files with 35 additions and 0 deletions

28
.gitignore vendored Normal file
View File

@ -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

6
cursor.go Normal file
View File

@ -0,0 +1,6 @@
package main
type Cursor struct {
x int
y int
}

1
util.go Normal file
View File

@ -0,0 +1 @@
package main