Skip to content

Commit

Permalink
refactor to const
Browse files Browse the repository at this point in the history
  • Loading branch information
doneill committed Nov 22, 2023
1 parent 91db57f commit 6a2dae9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/earthranger_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ import (
)

// ----------------------------------------------
// static var
// const var
// ----------------------------------------------

var DOMAIN = ".pamdas.org"
var API_AUTH = "/oauth2/token"
const DOMAIN = ".pamdas.org"
const API_AUTH = "/oauth2/token"

// ----------------------------------------------
// stucts
Expand Down

0 comments on commit 6a2dae9

Please sign in to comment.