mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-09-21 18:39:05 +02:00
11 lines
267 B
Go
11 lines
267 B
Go
//go:build unit
|
|
|
|
// This file contains utils for unit tests and it's only built when the "unit" tag is set
|
|
|
|
package common
|
|
|
|
// SetFrancisAddresses sets a value for francisAddresses
|
|
func (c *EnvConfigSchema) SetFrancisAddresses(v []string) {
|
|
c.francisAddresses = v
|
|
}
|