Name reduction
This commit is contained in:
parent
bf3ac2be9e
commit
2d884f92e9
1 changed files with 2 additions and 2 deletions
|
|
@ -47,9 +47,9 @@ type Session struct {
|
||||||
emptyEnv *otto.Otto
|
emptyEnv *otto.Otto
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewSession(inputTripleStore graph.TripleStore, timeoutSec int, persist bool) *Session {
|
func NewSession(ts graph.TripleStore, timeoutSec int, persist bool) *Session {
|
||||||
g := Session{
|
g := Session{
|
||||||
ts: inputTripleStore,
|
ts: ts,
|
||||||
limit: -1,
|
limit: -1,
|
||||||
timeoutSec: time.Duration(timeoutSec),
|
timeoutSec: time.Duration(timeoutSec),
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue