25 lines
583 B
Go
25 lines
583 B
Go
// Copyright 2013 The Chihaya Authors. All rights reserved.
|
|
// Use of this source code is governed by the BSD 2-Clause license,
|
|
// which can be found in the LICENSE file.
|
|
|
|
package gazelle
|
|
|
|
import (
|
|
"github.com/pushrax/chihaya/models"
|
|
)
|
|
|
|
func (c *Conn) LoadTorrents(ids []uint64) ([]*models.Torrent, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func (c *Conn) LoadAllTorrents() ([]*models.Torrent, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func (c *Conn) LoadUsers(ids []uint64) ([]*models.User, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func (c *Conn) LoadAllUsers(ids []uint64) ([]*models.User, error) {
|
|
return nil, nil
|
|
}
|