1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-03-06 11:38:31 +00:00
pixelfed/app/Http/Controllers/ImportController.php

17 lines
224 B
PHP
Raw Normal View History

2018-11-03 21:51:51 -06:00
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class ImportController extends Controller
{
2020-05-25 21:30:18 -06:00
use Import\Instagram, Import\Mastodon;
2018-11-03 21:51:51 -06:00
2020-05-25 21:30:18 -06:00
public function __construct()
{
$this->middleware('auth');
}
2018-11-03 21:51:51 -06:00
}