11 lines
223 B
Go
11 lines
223 B
Go
|
package bolt
|
||
|
|
||
|
type Option func(b *bolt)
|
||
|
|
||
|
// sets the substring that must be present at the beginning of the message to indicate a command
|
||
|
func WithIndicator(i string) Option {
|
||
|
return func(b *bolt) {
|
||
|
b.indicator = i
|
||
|
}
|
||
|
}
|