12 lines
193 B
Go
12 lines
193 B
Go
package main
|
|
|
|
import (
|
|
"git.kmsign.ru/royalcat/tstor/plugins/qbittorrent"
|
|
"git.kmsign.ru/royalcat/tstor/server/tstor"
|
|
)
|
|
|
|
func main() {
|
|
tstor.Run([]*tstor.Plugin{
|
|
qbittorrent.Plugin,
|
|
})
|
|
}
|