Skip to content
This repository has been archived by the owner on Mar 31, 2019. It is now read-only.

Commit

Permalink
organizing query parameters in the same order they are documented
Browse files Browse the repository at this point in the history
  • Loading branch information
zabawaba99 committed Jun 26, 2016
1 parent 5ba1484 commit 2e2d788
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions firebase.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ type ErrTimeout struct {
// query parameter constants
const (
authParam = "auth"
formatParam = "format"
shallowParam = "shallow"
orderByParam = "orderBy"
equalToParam = "equalTo"
startAtParam = "startAt"
endAtParam = "endAt"
formatParam = "format"
formatVal = "export"
orderByParam = "orderBy"
limitToFirstParam = "limitToFirst"
limitToLastParam = "limitToLast"
startAtParam = "startAt"
endAtParam = "endAt"
equalToParam = "equalTo"
)

// Firebase represents a location in the cloud.
Expand Down

0 comments on commit 2e2d788

Please sign in to comment.