mirror of https://github.com/pixelfed/pixelfed.git
14 lines
191 B
PHP
14 lines
191 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Controllers\Import;
|
||
|
|
||
|
use Illuminate\Http\Request;
|
||
|
|
||
|
trait Mastodon
|
||
|
{
|
||
|
public function mastodon()
|
||
|
{
|
||
|
return view('settings.import.mastodon.home');
|
||
|
}
|
||
|
}
|