23 lines
526 B
Go
23 lines
526 B
Go
|
package file
|
||
|
|
||
|
import "path/filepath"
|
||
|
|
||
|
var (
|
||
|
DefaultBaseDir = "data"
|
||
|
DefaultQuizzesSubdir = "quizzes"
|
||
|
DefaultCollectionsSubdir = "collections"
|
||
|
DefaultParticipantsSubdir = "participants"
|
||
|
)
|
||
|
|
||
|
func GetDefaultQuizzesDir() string {
|
||
|
return filepath.Join(DefaultBaseDir, DefaultQuizzesSubdir)
|
||
|
}
|
||
|
|
||
|
func GetDefaultCollectionsDir() string {
|
||
|
return filepath.Join(DefaultBaseDir, DefaultCollectionsSubdir)
|
||
|
}
|
||
|
|
||
|
func GetDefaultParticipantsDir() string {
|
||
|
return filepath.Join(DefaultBaseDir, DefaultParticipantsSubdir)
|
||
|
}
|