Semaphore/db/sql/option.go
2024-03-10 18:55:42 +01:00

10 lines
164 B
Go

package sql
func (d *SqlDb) SetOption(key string, value string) error {
return nil
}
func (d *SqlDb) GetOption(key string) (value string, err error) {
return
}