mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-06 12:19:37 -06:00
16 lines
249 B
Go
16 lines
249 B
Go
package idm
|
|
|
|
import (
|
|
_ "embed"
|
|
)
|
|
|
|
// BaseLDIF is a template for base LDAP entries
|
|
//
|
|
//go:embed ldif/base.ldif.tmpl
|
|
var BaseLDIF string
|
|
|
|
// DemoUsersLDIF is a template for demo users
|
|
//
|
|
//go:embed ldif/demousers.ldif.tmpl
|
|
var DemoUsersLDIF string
|