cqltypes.go 264 B

1234567891011
  1. // Copyright (c) 2012 The gocql Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package gocql
  5. type Duration struct {
  6. Months int32
  7. Days int32
  8. Nanoseconds int64
  9. }