github.com/condensat/bank-core@v0.1.0/database/query/request.go (about)

     1  // Copyright 2020 Condensat Tech. All rights reserved.
     2  // Use of this source code is governed by a MIT
     3  // license that can be found in the LICENSE file.
     4  
     5  package query
     6  
     7  // zero allocation querys string for scope
     8  const (
     9  	reqEQ  = " = ?"
    10  	reqGTE = " >= ?"
    11  	reqLTE = " <= ?"
    12  )