github.com/astrogo/fitsio@v0.3.0/card.go (about)

     1  // Copyright 2015 The astrogo 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  
     5  package fitsio
     6  
     7  type Value interface{}
     8  
     9  // Card is a record block in a Header
    10  type Card struct {
    11  	Name    string
    12  	Value   Value
    13  	Comment string
    14  }