14 lines
280 B
Go
14 lines
280 B
Go
package main
|
|
|
|
import (
|
|
"git.kmsign.ru/royalcat/tstor/plugins/archive"
|
|
"git.kmsign.ru/royalcat/tstor/plugins/qbittorrent"
|
|
"git.kmsign.ru/royalcat/tstor/server/tstor"
|
|
)
|
|
|
|
func main() {
|
|
tstor.Run([]tstor.Plugin{
|
|
archive.ArchivePlugin{},
|
|
qbittorrent.QBittorrentPlugin{},
|
|
})
|
|
}
|