github.com/wormhole-foundation/wormhole-explorer/common@v0.0.0-20240604151348-09585b5b97c5/pool/config.go (about)

     1  package pool
     2  
     3  // Config is the configuration of an pool item.
     4  type Config struct {
     5  	// id is the RPC service ID.
     6  	Id string
     7  	// description of the item.
     8  	Description string
     9  	// priority is the priority of the item.
    10  	Priority uint8
    11  	// amount of request per minute
    12  	RequestsPerMinute uint16
    13  }