mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
8 lines
173 B
Go
8 lines
173 B
Go
package dsn
|
|
|
|
// Parse creates a new DSN struct containing the parsed data from the specified string.
|
|
func Parse(dsn string) DSN {
|
|
d := DSN{DSN: dsn}
|
|
d.parse()
|
|
return d
|
|
}
|