mirror of
https://github.com/restic/rest-server.git
synced 2025-10-19 15:43:21 +00:00
14 lines
201 B
Go
14 lines
201 B
Go
![]() |
package main
|
||
|
|
||
|
import ()
|
||
|
|
||
|
// A Repository is the place where backups are stored
|
||
|
type Repository struct {
|
||
|
path string
|
||
|
}
|
||
|
|
||
|
// Creates the file structure of the Repository
|
||
|
func (r *Repository) Init() {
|
||
|
|
||
|
}
|