From 9369810ea4a3e4db16a17da82563bcca59263991 Mon Sep 17 00:00:00 2001 From: Patrik Stenmark Date: Fri, 6 Dec 2024 14:41:59 +0100 Subject: [PATCH] Add All Aboard (#732) * Add All Aboard * Fix industry Co-authored-by: Sean Callan --------- Co-authored-by: Sean Callan --- priv/companies/all_aboard.exs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 priv/companies/all_aboard.exs diff --git a/priv/companies/all_aboard.exs b/priv/companies/all_aboard.exs new file mode 100644 index 00000000..19c7e049 --- /dev/null +++ b/priv/companies/all_aboard.exs @@ -0,0 +1,22 @@ +# Company file for All Aboard +# Created on: 2024-12-05 + +%{ + name: "All Aboard", + website: "https://allaboard.eu/", + github: "https://github.com/allaboard-dev", + # reference lib/companies/industries.ex for a list of recommended industries to use here + industry: "Information Technology", + location: %{ + city: "Stockholm", + state: "Stockholm", + country: "Sweden" + }, + description: """ + Easy-to-use booking API and platform for European train tickets. + + Using Elixir to power backend with integrations to train carriers, order + and payment handling and more. + """, + last_changed_on: ~D[2024-12-05] +}