github.com/blend/go-sdk@v1.20220411.3/configutil/int_source.go (about)

     1  /*
     2  
     3  Copyright (c) 2022 - Present. Blend Labs, Inc. All rights reserved
     4  Use of this source code is governed by a MIT license that can be found in the LICENSE file.
     5  
     6  */
     7  
     8  package configutil
     9  
    10  import "context"
    11  
    12  // IntSource is a type that can return a value.
    13  type IntSource interface {
    14  	// Int should return a int if the source has a given value.
    15  	// It should return nil if the value is not found.
    16  	// It should return an error if there was a problem fetching the value.
    17  	Int(ctx context.Context) (*int, error)
    18  }