mirror of https://github.com/pixelfed/pixelfed.git
17 lines
242 B
PHP
17 lines
242 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Controllers;
|
||
|
|
||
|
use Illuminate\Http\Request;
|
||
|
|
||
|
class ImportController extends Controller
|
||
|
{
|
||
|
use Import\Instagram, Import\Mastodon;
|
||
|
|
||
|
public function __construct()
|
||
|
{
|
||
|
$this->middleware('auth');
|
||
|
}
|
||
|
|
||
|
}
|