Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
antonholmquist committed Dec 2, 2014
0 parents commit 3d4ea5f
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
Empty file added README.md
Empty file.
6 changes: 6 additions & 0 deletions array.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package jason

type Array struct {
Value []interface{}
Valid bool
}
6 changes: 6 additions & 0 deletions bool.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package jason

type Bool struct {
Value bool
Valid bool
}
1 change: 1 addition & 0 deletions jason.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package jason
5 changes: 5 additions & 0 deletions null.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package jason

type Null struct {
Valid bool
}
6 changes: 6 additions & 0 deletions number.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package jason

type Number struct {
Value float64
Valid bool
}
6 changes: 6 additions & 0 deletions object.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package jason

type Object struct {
Value map[string]interface{}
Valid bool
}
6 changes: 6 additions & 0 deletions string.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package jason

type String struct {
Value string
Valid bool
}

0 comments on commit 3d4ea5f

Please sign in to comment.