11 lines
188 B
Nim
11 lines
188 B
Nim
|
import options
|
||
|
|
||
|
type Link* = object
|
||
|
src*: string
|
||
|
dst*: string
|
||
|
|
||
|
type Config* = object
|
||
|
mount*: Option[seq[string]]
|
||
|
romount*: Option[seq[string]]
|
||
|
symlinks*: Option[seq[Link]]
|