Last active
March 3, 2024 08:45
-
-
Save carlo-colombo/1cb8450530fb94986c8b326249dc2960 to your computer and use it in GitHub Desktop.
ReqCookieJar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| defmodule ReqCookieJar.MixProject do | |
| use Mix.Project | |
| def project do | |
| [ | |
| app: :req_cookie_jar, | |
| version: "0.1.0", | |
| elixir: "~> 1.14", | |
| start_permanent: Mix.env() == :prod, | |
| deps: [{:req, "~> 0.4.0"}], | |
| elixirc_paths: ["."] | |
| ] | |
| end | |
| # Run "mix help compile.app" to learn about applications. | |
| def application do | |
| [ | |
| extra_applications: [:logger] | |
| ] | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment