mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 08:44:49 +00:00
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');
|
|
}
|
|
}
|