mirror of
https://github.com/ArthurDanjou/artdanj-api.git
synced 2026-01-14 12:14:33 +01:00
48 lines
1.1 KiB
TypeScript
Executable File
48 lines
1.1 KiB
TypeScript
Executable File
import {HttpContextContract} from "@ioc:Adonis/Core/HttpContext";
|
|
|
|
export default class ProfileController {
|
|
|
|
public me ({ response }: HttpContextContract) {
|
|
return response.status(200).send({
|
|
pronouns: "Arthur",
|
|
home: ["Paris", "France"],
|
|
passions: [
|
|
"Dev",
|
|
"DevOps",
|
|
"New technologies",
|
|
"Gaming"
|
|
],
|
|
code: [
|
|
"Javascript",
|
|
"Typescript",
|
|
"HTML",
|
|
"CSS",
|
|
"GoLang",
|
|
"Java"
|
|
],
|
|
ask_me_about: [
|
|
"Web dev",
|
|
"Tech",
|
|
"Consulting",
|
|
"Cloud computing",
|
|
"DevOps",
|
|
"Software dev"
|
|
],
|
|
technologies: {
|
|
web_app: ["VueJs", "NuxtJs", "Sass", "Tailwind"],
|
|
desktop_app: ["ElectronJs"],
|
|
mobile_app: ["React Native"],
|
|
back_end: {
|
|
typescript: ["AdonisJs"],
|
|
java: ["Spring"]
|
|
},
|
|
databases: ["MongoDB", "MariaDB", "Redis"],
|
|
messaging: ["RabbitMq"],
|
|
other: ["Docker", "Git"],
|
|
architecture: ["microservices", "event-driven", "design system pattern"],
|
|
operating_systems: ['Windows', 'Linux']
|
|
},
|
|
})
|
|
}
|
|
}
|